28 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
| <div>
 | |
|   <img src="{{ user.avatar(64) }}" style="margin: 5px; float: left">
 | |
|   <p><a href="{{ url_for('main.user', username=user.username) }}">{{ user.username }}</a></p>
 | |
|   {% if user.about_me %}<p>{{ user.about_me }}</p>{% endif %}
 | |
|   <div class="clearfix"></div>
 | |
|   {% if user.last_seen %}
 | |
|   <p>{{ _('Last seen on') }}: {{ moment(user.last_seen).format('lll') }}</p>
 | |
|   {% endif %}
 | |
|   <p>{{ _('%(count)d followers', count=user.followers.count()) }}, {{ _('%(count)d following', count=user.following.count()) }}</p>
 | |
|   {% if user != current_user %}
 | |
|     {% if not current_user.is_following(user) %}
 | |
|     <p>
 | |
|       <form action="{{ url_for('main.follow', username=user.username) }}" method="post">
 | |
|         {{ form.hidden_tag() }}
 | |
|         {{ form.submit(value=_('Follow'), class_='btn btn-outline-primary btn-sm') }}
 | |
|       </form>
 | |
|     </p>
 | |
|     {% else %}
 | |
|     <p>
 | |
|       <form action="{{ url_for('main.unfollow', username=user.username) }}" method="post">
 | |
|         {{ form.hidden_tag() }}
 | |
|         {{ form.submit(value=_('Unfollow'), class_='btn btn-outline-primary btn-sm') }}
 | |
|       </form>
 | |
|     </p>
 | |
|     {% endif %}
 | |
|   {% endif %}
 | |
| </div>
 |