Skip to content
Snippets Groups Projects
Commit f722d6d0 authored by smtw's avatar smtw
Browse files

show calender full page width

parent d08b3e57
No related branches found
No related tags found
No related merge requests found
......@@ -51,6 +51,7 @@
{%- block content %}{% endblock %}
</main>
{% endblock fullpage -%}
{%- block fullpage_add -%}{% endblock fullpage_add -%}
<footer id="footer" class="mt-auto border-top border-primary py-3 py-xl-5">
<ul class="container nav p-0 justify-content-center">
<li>
......
......@@ -72,10 +72,19 @@
{% if mode == 'list' %}
{{ list_events.list(events, my_favorite_events, my_scheduled_events) }}
{% elif mode == 'calendar' %}
{{ calendar(events) }}
{% endif %}
<hr class="my-11 border-top-0">
{% endblock %}
{% block fullpage_add %}
{% if mode == 'calendar' %}
<div class="p-5">
{{ calendar(events) }}
<hr class="my-11 border-top-0">
</div>
{% endif %}
{% endblock %}
......@@ -72,10 +72,20 @@
{% if mode == 'list' %}
{{ list_events.list(events, my_favorite_events, my_scheduled_events) }}
{% elif mode == 'calendar' %}
{{ calendar(events) }}
{% endif %}
<hr class="my-11 border-top-0">
{% endblock %}
{% block fullpage_add %}
{% if mode == 'calendar' %}
<div class="p-5">
{{ calendar(events) }}
<hr class="my-11 border-top-0">
</div>
{% endif %}
{% endblock %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment