diff --git a/backend/locale/cs/LC_MESSAGES/django.po b/backend/locale/cs/LC_MESSAGES/django.po index f0bb49c..85d5e99 100644 --- a/backend/locale/cs/LC_MESSAGES/django.po +++ b/backend/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-29 14:14+0000\n" +"POT-Creation-Date: 2024-01-12 15:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -136,11 +136,11 @@ msgstr "Smazat" msgid "Transpose" msgstr "Transponovat" -#: backend/templates/songs/index.html:91 +#: backend/templates/songs/index.html:97 msgid "Search" msgstr "Vyhledávání" -#: backend/templates/songs/index.html:93 +#: backend/templates/songs/index.html:99 msgid "Number, text or author" msgstr "Číslo, text nebo autor" diff --git a/category/migrations/0012_alter_category_link.py b/category/migrations/0012_alter_category_link.py new file mode 100644 index 0000000..4109f99 --- /dev/null +++ b/category/migrations/0012_alter_category_link.py @@ -0,0 +1,19 @@ +# Generated by Django 5.0 on 2024-01-12 14:46 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("category", "0011_alter_category_options"), + ] + + operations = [ + migrations.AlterField( + model_name="category", + name="link", + field=models.CharField( + blank=True, help_text="Link to include in the PDF", max_length=300, verbose_name="Link" + ), + ), + ] diff --git a/frontend/locale/cs/LC_MESSAGES/django.po b/frontend/locale/cs/LC_MESSAGES/django.po index 382ea83..9437d16 100644 --- a/frontend/locale/cs/LC_MESSAGES/django.po +++ b/frontend/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-29 14:14+0000\n" +"POT-Creation-Date: 2024-01-12 15:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -73,27 +73,31 @@ msgstr "" msgid "Submit" msgstr "Odeslat" -#: frontend/templates/base/index.html:58 +#: frontend/templates/base/index.html:35 +msgid "Logo" +msgstr "" + +#: frontend/templates/base/index.html:64 msgid "Options" msgstr "Možnosti" -#: frontend/templates/base/index.html:68 +#: frontend/templates/base/index.html:74 msgid "Language" msgstr "Jazyk" -#: frontend/templates/base/index.html:82 +#: frontend/templates/base/index.html:88 msgid "Version" msgstr "Verze" -#: frontend/templates/base/index.html:83 +#: frontend/templates/base/index.html:89 msgid "Git" msgstr "" -#: frontend/templates/base/index.html:91 +#: frontend/templates/base/index.html:97 msgid "Logged as" msgstr "Přihlášen jako" -#: frontend/templates/base/index.html:93 +#: frontend/templates/base/index.html:99 msgid "Log in" msgstr "Přihlásit se" diff --git a/frontend/static/favicon.ico b/frontend/static/favicon.ico deleted file mode 100644 index 21ca38e..0000000 Binary files a/frontend/static/favicon.ico and /dev/null differ diff --git a/frontend/templates/base/form.html b/frontend/templates/base/form.html index d1195bb..169f299 100644 --- a/frontend/templates/base/form.html +++ b/frontend/templates/base/form.html @@ -3,7 +3,7 @@ {% load django_bootstrap5 %} {% block framed_body %} -
+ {% csrf_token %} {% bootstrap_form form layout='horizontal' %} {% bootstrap_button _("Submit") button_type="submit" %} diff --git a/frontend/templates/base/index.html b/frontend/templates/base/index.html index da417d0..2943ce9 100644 --- a/frontend/templates/base/index.html +++ b/frontend/templates/base/index.html @@ -13,7 +13,9 @@ {% block title %} {{ request.tenant.display_name }} {% endblock %} - + {% if request.tenant.icon %} + + {% endif %} @@ -28,7 +30,11 @@