12345678910111213141516171819202122 |
- {% extends "base.html" %}
- {% block page_title %}{{object.name}}{% endblock %}
- {% block title %}{{object.name}}{% endblock %}
- {% block content %}
- <h4>Browsing {{object_list.count}} games</h4>
- <form id="library-update-form" class="form-inline my-2 my-lg-0" method="get" action="{% url 'games:game_library_update' %}?game_systems={{object.retropie_slug}}">
- <button id="library-update-btn" class="btn btn-warning my-2 my-sm-0" type="submit" {% if update_in_progress %}disabled{% endif %}>Update {{object.name}}</button>
- </form>
- <div class="d-flex flex-column">
- <div class="image-grid-container">
- {% for game in object_list %}
- {% include "games/_game_card.html" %}
- {% endfor %}
- </div>
- </div>
- {% include "games/_pagination.html" %}
- {% endblock %}
|