You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
858 B

  1. {% extends "base.html" %}
  2. {% import "_macros.html" as macros %}
  3. {% block title %}Flasky - {{ title }} {{ user.username }}{% endblock %}
  4. {% block page_content %}
  5. <div class="page-header">
  6. <h1>{{ title }} {{ user.username }}</h1>
  7. </div>
  8. <table class="table table-hover followers">
  9. <thead><tr><th>User</th><th>Since</th></tr></thead>
  10. {% for follow in follows %}
  11. <tr>
  12. <td>
  13. <a href="{{ url_for('.user', username = follow.user.username) }}">
  14. <img class="img-rounded" src="{{ follow.user.gravatar(size=32) }}">
  15. {{ follow.user.username }}
  16. </a>
  17. </td>
  18. <td>{{ moment(follow.timestamp).format('L') }}</td>
  19. </tr>
  20. {% endfor %}
  21. </table>
  22. <div class="pagination">
  23. {{ macros.pagination_widget(pagination, endpoint, username = user.username) }}
  24. </div>
  25. {% endblock %}