{% extends "base.html" %} {% block page_title %}Game Library{% endblock %} {% block title %}All games by rating{% endblock %} {% block content %}
# | Name | System | Rating | Developer | Publisher | Genre |
---|---|---|---|---|---|---|
{{game.id}} | {{game.name}} | {{game.game_system}} | {{game.rating_by_100}}/100 | {{game.developer}} | {{game.publisher}} | {% for genre in game.genre.all %}{{genre}}{% if not forloop.last %}, {% endif %}{% endfor %} |