calendar-social/calsocial/templates/profile-details.html

12 lines
312 B
HTML

{% extends 'base.html' %}
{% block content %}
<h1>
{{ profile.name }}
<small>@{{ profile.user.username}}</small>
</h1>
{% if profile.user != current_user %}
<a href="{{ url_for('follow_user', username=profile.user.username) }}">{% trans %}Follow{% endtrans %}
{% endif %}
{% endblock content %}