game_list.html 886 B

123456789101112131415161718192021222324252627282930313233
  1. {% extends "base.html" %}
  2. {% block title %}Games{% endblock %}
  3. {% block content %}
  4. {% if request.user.profile.favorite_games %}
  5. <h2>Favorites</h2>
  6. <ul>
  7. {% for game in request.user.profile.favorite_games.all %}
  8. <li><a href="{{game.get_absolute_url}}">{{game}}</a></li>
  9. {% endfor %}
  10. </ul>
  11. {% endif %}
  12. {% if todays_game and 'page' not in request.GET %}
  13. <div class="d-flex flex-column">
  14. <div class="image-grid-container">
  15. <h2>Featured</h2>
  16. {% include 'games/_game_card.html' with game=todays_game featured="true" %}
  17. </div>
  18. </div>
  19. {% endif %}
  20. <h2>Recently added</h2>
  21. <div class="card-columns">
  22. {% for game in object_list %}
  23. {% include 'games/_game_card.html' %}
  24. {% endfor %}
  25. </div>
  26. {% include "games/_pagination.html" %}
  27. {% endblock %}