소스 검색

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>