瀏覽代碼

Update list to show recently added games

Colin Powell 3 年之前
父節點
當前提交
52251cb0ad
共有 1 個文件被更改,包括 2 次插入1 次删除
  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>