diff --git a/catalog/migrations/0009_remove_tvepisode_show.py b/catalog/migrations/0009_remove_tvepisode_show.py new file mode 100644 index 00000000..8f2fd3b7 --- /dev/null +++ b/catalog/migrations/0009_remove_tvepisode_show.py @@ -0,0 +1,16 @@ +# Generated by Django 3.2.19 on 2023-06-19 23:47 + +from django.db import migrations + + +class Migration(migrations.Migration): + dependencies = [ + ("catalog", "0008_delete_historicalitem"), + ] + + operations = [ + migrations.RemoveField( + model_name="tvepisode", + name="show", + ), + ] diff --git a/catalog/templates/discover.html b/catalog/templates/discover.html index 8ee6c09b..619ce6b3 100644 --- a/catalog/templates/discover.html +++ b/catalog/templates/discover.html @@ -104,7 +104,7 @@ {% if request.user.is_authenticated %} {% include "_sidebar.html" with show_progress=1 %} {% else %} - {% include "partial/_sidebar_anonymous.html" %} + {% include "_sidebar_anonymous.html" %} {% endif %} {% include "_footer.html" %} diff --git a/common/templates/partial/_sidebar_anonymous.html b/common/templates/_sidebar_anonymous.html similarity index 100% rename from common/templates/partial/_sidebar_anonymous.html rename to common/templates/_sidebar_anonymous.html diff --git a/common/templates/partial/_sidebar.html b/common/templates/partial/_sidebar.html deleted file mode 100644 index 2132ab06..00000000 --- a/common/templates/partial/_sidebar.html +++ /dev/null @@ -1,142 +0,0 @@ -{% load static %} -{% load i18n %} -{% load admin_url %} -{% load mastodon %} -{% load oauth_token %} -{% load truncate %} -{% load thumb %} -{% load collection %} -{% load bleach_tags %} -