Explorar el Código

Fix display of TV episode and season on homepage

Colin Powell hace 2 años
padre
commit
e206a7fbf3
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      vrobbler/templates/scrobbles/scrobble_list.html

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

@@ -138,7 +138,7 @@
                             {% for scrobble in video_scrobble_list %}
                             <tr>
                                 <td>{{scrobble.timestamp|naturaltime}}</td>
-                                <td>{% if scrobble.video.tv_series %}E{{scrobble.video.season_number}}S{{scrobble.video.season_number}} -{% endif %} {{scrobble.video.title}}</td>
+                                <td>{% if scrobble.video.tv_series %}S{{scrobble.video.season_number}}E{{scrobble.video.episode_number}} -{% endif %} {{scrobble.video.title}}</td>
                                 <td>{% if scrobble.video.tv_series %}{{scrobble.video.tv_series}}{% endif %}</td>
                             </tr>
                             {% endfor %}