1
0
Fork 0
mirror of https://codeberg.org/Mo8it/AdvLabDB.git synced 2024-09-17 18:31:15 +00:00
AdvLabDB/advlabdb/templates/macros.jinja.html
2022-10-09 02:58:58 +02:00

36 lines
1.1 KiB
HTML

{% macro information(current_user, active_semester_str, role) %}
<div class="row" style="text-align: center;">
<div class="col">
User: {{ current_user }}
</div>
<div class="col">
Active semester: {{ active_semester_str() }}
<span class="fa fa-question-circle" title="The active semester can be changed in user settings"></span>
</div>
{% if (role == "admin") and (current_user.has_role("assistant")) %}
<div class="col">
<a
href="{{ url_for('main.index') }}assistant"
>Assistant space</a>
</div>
{% elif (role == "assistant") and (current_user.has_role("admin")) %}
<div class="col">
<a
href="{{ url_for('main.index') }}admin"
>Admin space</a>
</div>
{% endif %}
</div>
{% endmacro %}
{% macro render_footer(footer) %}
<footer class='container text-center'>
<hr>
<p style='font-size:14px;'>
{{ footer|safe }}
</p>
<br>
</footer>
{% endmacro %}