Explorar el Código

Update list to show recently added games

Colin Powell hace 3 años
padre
commit
52251cb0ad
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      templates/games/game_list.html

+ 2 - 1
templates/games/game_list.html

@@ -1,11 +1,12 @@
 {% extends "base.html" %}
 
-{% block title %}Featured games{% endblock %}
+{% block title %}Recently added games{% endblock %}
 
 {% block content %}
      <div class="d-flex flex-column">
         <div class="image-grid-container">
         {% for  game in object_list %}
+	    <h4>{{game.created}}</h4>
             {% include 'games/_game_card.html' %}
         {% endfor %}
         </div>