diff --git a/LandingPage/static/css/style.css b/LandingPage/static/css/style.css
index ccd6dd7..9000d5e 100644
--- a/LandingPage/static/css/style.css
+++ b/LandingPage/static/css/style.css
@@ -136,6 +136,9 @@ section.show-details {
margin: 0;
font-size: 200%;
}
+.show-details .details.season h3 {
+ margin-top: 0;
+}
.show-details .details .description {
width: 80%;
}
diff --git a/Show/templates/episode.html b/Show/templates/episode.html
index ca78cd9..16d6ba7 100644
--- a/Show/templates/episode.html
+++ b/Show/templates/episode.html
@@ -20,12 +20,21 @@
-
+ {% if episode.season.artwork %}
+
+ {% else %}
+
+ {% endif %}
-
+
{{show.name}}
+ {% if episode.season.name %}
+
{{ episode.season.name }}
+ {% else %}
+
Season {{ episode.season.number }}
+ {% endif %}
- {{show.description}}
+ {{ episode.season.description }}
diff --git a/Show/templates/submit.html b/Show/templates/submit.html
index 98d285c..45e51b5 100644
--- a/Show/templates/submit.html
+++ b/Show/templates/submit.html
@@ -7,12 +7,21 @@
-
+ {% if episode.season.artwork %}
+
+ {% else %}
+
+ {% endif %}
-
+
{{show.name}}
+ {% if episode.season.name %}
+
{{ episode.season.name }}
+ {% else %}
+
Season {{ episode.season.number }}
+ {% endif %}
- {{show.description}}
+ {{ episode.season.description }}
diff --git a/Show/templates/submit_mod.html b/Show/templates/submit_mod.html
index cc1c52b..1d2636d 100644
--- a/Show/templates/submit_mod.html
+++ b/Show/templates/submit_mod.html
@@ -7,12 +7,21 @@
-
+ {% if episode.season.artwork %}
+
+ {% else %}
+
+ {% endif %}
-
+
{{show.name}}
+ {% if episode.season.name %}
+
{{ episode.season.name }}
+ {% else %}
+
Season {{ episode.season.number }}
+ {% endif %}
- {{show.description}}
+ {{ episode.season.description }}