Colin Powell 2 лет назад
Родитель
Сommit
fbe35a02a1
1 измененных файлов с 3 добавлено и 1 удалено
  1. 3 1
      vrobbler/templates/scrobbles/scrobble_list.html

+ 3 - 1
vrobbler/templates/scrobbles/scrobble_list.html

@@ -522,6 +522,7 @@
                                 <tr>
                                     <th scope="col">Date</th>
                                     <th scope="col">Title</th>
+                                    <th scope="col">Round</th>
                                     <th scope="col">League</th>
                                 </tr>
                             </thead>
@@ -530,7 +531,8 @@
                                 <tr>
                                     <td>{{scrobble.timestamp|naturaltime}}</td>
                                     <td>{{scrobble.sport_event.title}}</td>
-                                    <td>{{scrobble.sport_event.league.abbreviation}}</td>
+                                    <td>{{scrobble.sport_event.round.name}}</td>
+                                    <td>{{scrobble.sport_event.round.season.league}}</td>
                                 </tr>
                                 {% endfor %}
                             </tbody>