Cosmetic changes
All checks were successful
buildbot/django-dav-events--test Build done.

This commit is contained in:
2023-02-27 15:20:08 +01:00
parent 3c53403d17
commit fb21a8721f
13 changed files with 132 additions and 31 deletions

View File

@@ -227,7 +227,7 @@ class ModeForm(EventCreateForm):
)
level = forms.ChoiceField(choices=choices.LEVEL_CHOICES,
label=_(u'Schwierigkeitsnivau'),
label=_(u'Schwierigkeitsnivau / Familien'),
widget=forms.RadioSelect())
first_day = forms.DateField(required=True,

View File

@@ -3,6 +3,6 @@
{% load i18n %}
{% block page-container-fluid %}
<h3 class="top-most">{% trans 'Für Tourenleiter' %}</h3>
<h3 class="top-most">{% trans 'Für Tourenleiter*innen' %}</h3>
{% include './includes/home_tiles.html' %}
{% endblock page-container-fluid %}

View File

@@ -1,8 +1,10 @@
from django.conf import settings
from dav_base.tests.generic import Url, UrlsTestCase
from .. import views
url_prefix = 'events'
url_prefix = settings.MODULE_CONFIG.modules['dav_events'].url_prefix
class TestCase(UrlsTestCase):