profile.html 1.3 KB

1234567891011121314151617181920212223242526272829
  1. {% extends "sora/layout.html" %}
  2. {% load i18n %}
  3. {% load humanize %}
  4. {% load url from future %}
  5. {% import "_forms.html" as form_theme with context %}
  6. {% import "sora/macros.html" as macros with context %}
  7. {% block title %}{{ macros.page_title(profile.username) }}{% endblock %}
  8. {% block content %}
  9. <div class="page-header profile-header header-tabbed">
  10. <div class="avatar-height">
  11. <img src="{{ profile.get_avatar() }}" class="avatar pull-left" alt="{% trans %}Member Avatar{% endtrans %}" title="{% trans %}Member Avatar{% endtrans %}">
  12. <div class="pull-left">
  13. <h1>{{ profile.username }} <small>{% trans last_visit=profile.last_date|reltimesince|low %}Last seen {{ last_visit }}{% endtrans %}</small></h1>
  14. <p class="lead">{% if profile.title or profile.rank.title %}{% if profile.title %}{{ _(profile.title) }}{% elif profile.rank.title %}{{ _(profile.rank.title) }}{% endif %}; {% endif %}<span class="muted">{% trans joined=profile.join_date|reldate|low %}Member since {{ joined }}{% endtrans %}</span></p>
  15. </div>
  16. </div>
  17. <ul class="nav nav-tabs">
  18. <li><a href="#">Last Posts</a></li>
  19. <li class="active"><a href="#">Following</a></li>
  20. <li><a href="#">Followers</a></li>
  21. <li><a href="#">Profile Summary</a></li>
  22. </ul>
  23. </div>
  24. <p class="lead">WORK IN PROGRESS</p>
  25. {% endblock %}