25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

33 satır
1.0 KiB

4 yıl önce
  1. {% extends 'base.html' %}
  2. {% from 'bootstrap/pagination.html' import render_pagination %}
  3. {% from 'macros.html' import photo_card %}
  4. {% block title %}{{ user.name }}的收藏{% endblock %}
  5. {% block content %}
  6. {% include 'user/_header.html' %}
  7. <div class="row">
  8. <div class="col-md-12">
  9. {% if user.public_collections or current_user == user %}
  10. {% if collects %}
  11. {% for collect in collects %}
  12. {{ photo_card(collect.collected) }}
  13. {% endfor %}
  14. {% else %}
  15. <div class="tip">
  16. <h3>无收藏</h3>
  17. </div>
  18. {% endif %}
  19. {% else %}
  20. <div class="tip">
  21. <h3>该用户的收藏是私人的</h3>
  22. </div>
  23. {% endif %}
  24. </div>
  25. </div>
  26. {% if collects %}
  27. <div class="page-footer">
  28. {{ render_pagination(pagination, align='center') }}
  29. </div>
  30. {% endif %}
  31. {% endblock %}