Skip to content
Snippets Groups Projects
Verified Commit 584dae42 authored by Alexa Valentová's avatar Alexa Valentová
Browse files

rename tabs

parent 2f140f44
No related branches found
No related tags found
No related merge requests found
Pipeline #17347 passed
......@@ -5,16 +5,20 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('lectures', '0027_alter_lecturecategory_options'),
("lectures", "0027_alter_lecturecategory_options"),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]
operations = [
migrations.AlterField(
model_name='lecture',
name='rsvp_users',
field=models.ManyToManyField(blank=True, related_name='rsvp_lectures', to=settings.AUTH_USER_MODEL, verbose_name='Registrovaní účastníci'),
model_name="lecture",
name="rsvp_users",
field=models.ManyToManyField(
blank=True,
related_name="rsvp_lectures",
to=settings.AUTH_USER_MODEL,
verbose_name="Registrovaní účastníci",
),
),
]
......@@ -29,12 +29,12 @@
@click="toggleView('timeline')"
class="switch__item whitespace-nowrap"
:class="{'switch__item--active': isCurrentView('timeline')}"
>Časová osa</a>
>Kalendář</a>
<a
@click="toggleView('recordings')"
class="switch__item whitespace-nowrap"
:class="{'switch__item--active': isCurrentView('recordings')}"
>Záznamy</a>
>Knihovna</a>
<a
@click="toggleView('current_lectures')"
class="switch__item whitespace-nowrap"
......@@ -94,7 +94,7 @@
{% endfor %}
</div>
{% else %}
<span class="text-gray-600">Žádné dostupné záznamy.</span>
<span class="text-gray-600">Žádná dostupná školení.</span>
{% endif %}
</template>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment