This commit is contained in:
2026-03-04 19:17:46 +00:00
parent 3610011eaa
commit 39c80a0253
7 changed files with 71 additions and 1 deletions

View File

@@ -8,6 +8,9 @@
<a class="card link-card dashboard-link-card" href="{{ url_for('info', page='hotels') }}">{{ t('hotels') }}</a>
<a class="card link-card dashboard-link-card" href="{{ url_for('info', page='taxi') }}">{{ t('taxi') }}</a>
<a class="card link-card dashboard-link-card" href="{{ url_for('info', page='location') }}">{{ t('location') }}</a>
{% if not is_admin %}
<a class="card link-card dashboard-link-card" href="{{ url_for('info', page='gifts') }}">{{ t('gifts') }}</a>
{% endif %}
{% if is_admin %}
<a class="card link-card dashboard-link-card" href="{{ url_for('host_area') }}">{{ t('host_area') }}</a>
{% endif %}

View File

@@ -6,6 +6,7 @@
{% if page == 'hotels' %}{{ t('hotels') }}{% endif %}
{% if page == 'taxi' %}{{ t('taxi') }}{% endif %}
{% if page == 'location' %}{{ t('location') }}{% endif %}
{% if page == 'gifts' %}{{ t('gifts') }}{% endif %}
</h1>
{% if page == 'schedule' %}
@@ -14,6 +15,8 @@
<p>{{ t('hotels_text') }}</p>
{% elif page == 'taxi' %}
<p>{{ t('taxi_text') }}</p>
{% elif page == 'gifts' %}
<p>{{ t('gifts_text') }}</p>
{% elif page == 'location' %}
<p><strong>{{ location_name }}</strong></p>
<p>{{ location_address }}</p>