Clean up lastfm importing

This commit is contained in:
2023-02-16 22:31:46 -05:00
parent 9568726bf3
commit bb9936af65
7 changed files with 89 additions and 31 deletions

View File

@ -240,9 +240,7 @@
{% for scrobble in video_scrobble_list %}
<tr>
<td>{{scrobble.timestamp|naturaltime}}</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 %}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>
@ -367,4 +365,4 @@
$('#importModal').on('shown.bs.modal', function () { $('#importInput').trigger('focus') });
$('#exportModal').on('shown.bs.modal', function () { $('#exportInput').trigger('focus') });
</script>
{% endblock %}
{% endblock %}