From a34f68b21e7bd0080caf533e765a5428554696da Mon Sep 17 00:00:00 2001 From: Evert-R Date: Mon, 30 Oct 2023 07:57:57 +0100 Subject: [PATCH] add file format help text --- .../experiment/templates/add-sections.html | 35 ++++++++++++++++--- 1 file changed, 30 insertions(+), 5 deletions(-) diff --git a/backend/experiment/templates/add-sections.html b/backend/experiment/templates/add-sections.html index a86b3b32a..3bbc9a186 100644 --- a/backend/experiment/templates/add-sections.html +++ b/backend/experiment/templates/add-sections.html @@ -10,13 +10,18 @@ .select-fields p { display: inline-block; } + + .help-text { + color: var(--body-quiet-color); + font-size: 12px; + } + .song-help { position: relative; - top: 7.3rem; - color: var(--body-quiet-color); + top: 7.3rem; margin-left: 5rem; - font-size: 12px; } + p label { display: block; } @@ -49,7 +54,7 @@

Add sections to playlist: {{playlist.name}}

-
* Fill out both the artist and name fields to create a new song object
+
* Fill out both the artist and name fields to create a new song object
{% csrf_token %} {{ form.as_p }} {% render_inline_action_fields %} {% if form.errors %}
@@ -60,7 +65,7 @@

Add sections to playlist: {{playlist.name}}

{% endif %}
- +
* Allowed audio file formats: WAV, MP3, FLAC, OGG
@@ -69,4 +74,24 @@

Add sections to playlist: {{playlist.name}}

+ + {% endblock %}