114 lines
3.7 KiB
HTML
114 lines
3.7 KiB
HTML
{% load static bulma_utils i18n %}
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>Kadenios</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
{# CSS #}
|
|
<link rel="stylesheet" href="{% static 'css/main.css' %}">
|
|
<link rel="stylesheet" href="{% static 'vendor/font-awesome/css/font-awesome.min.css' %}">
|
|
<link rel="stylesheet" href="{% static 'vendor/font-awesome/css/solid.min.css' %}">
|
|
|
|
{# Javascript #}
|
|
<script src="{% static 'vendor/jquery/jquery-3.5.1.min.js' %}"></script>
|
|
{# <script src="{% static 'elections/js/main.js' %}"></script> #}
|
|
|
|
<!-- Delete notification -->
|
|
<script>
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
(document.querySelectorAll('.notification .delete') || []).forEach(($delete) => {
|
|
var $notification = $delete.parentNode;
|
|
|
|
$delete.addEventListener('click', () => {
|
|
$notification.parentNode.removeChild($notification);
|
|
});
|
|
});
|
|
});
|
|
|
|
</script>
|
|
|
|
{% block extra_head %}{% endblock extra_head %}
|
|
</head>
|
|
|
|
<body>
|
|
<nav class="level has-background-primary">
|
|
<div class="level-left pl-4">
|
|
<div class="level-item">
|
|
<a href="{% url "kadenios" %}">
|
|
<h1 class="has-text-primary-light is-size-1 is-family-secondary">Kadenios</h1>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
{% block auth %}
|
|
<div class="level-right pr-5">
|
|
{% if user.is_authenticated %}
|
|
<div class="level-item mr-5">
|
|
<div class="tag">
|
|
{% blocktrans with name=user.base_username connection=user.connection_method %}Connecté·e en tant que {{ name }} par {{ connection }}{% endblocktrans %}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="level-item ml-3">
|
|
<a class="icon is-size-1 has-text-white" href="{% url 'auth.logout' %}?next={% if view.get_next_url %}{{ view.get_next_url }}{% else %}/{% endif %}">
|
|
<i class="fas fa-sign-out-alt"></i>
|
|
</a>
|
|
</div>
|
|
{% else %}
|
|
|
|
<div class="level-item">
|
|
{% if election %}
|
|
<a class="icon is-size-1 has-text-white" href="{% url 'auth.select' %}?next={{ request.path }}&election_id={{ election.id }}&method={{ election.preferred_method }}">
|
|
<i class="fas fa-sign-in-alt"></i>
|
|
</a>
|
|
{% else %}
|
|
<a class="icon is-size-1 has-text-white" href="{% url 'auth.cas' %}?next={{ request.path }}">
|
|
<i class="fas fa-sign-in-alt"></i>
|
|
</a>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|
|
</nav>
|
|
{% block layout %}
|
|
<div class="main-content">
|
|
<div class="columns is-centered">
|
|
<div class="column is-two-thirds">
|
|
<section class="section pt-3">
|
|
|
|
{% if messages %}
|
|
{% for message in messages %}
|
|
<div class="notification is-{{ message.level_tag|bulma_message_tag }} is-light">
|
|
{% if 'safe' in message.tags %}
|
|
{{ message|safe }}
|
|
{% else %}
|
|
{{ message }}
|
|
{% endif %}
|
|
<button class="delete"></button>
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
<div class="box">
|
|
{% block content %}
|
|
{% endblock content %}
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock layout %}
|
|
<footer class="footer">
|
|
<p class="has-text-centered">
|
|
{% blocktrans %}Développé par <a class="tag is-light is-danger" href="https://www.eleves.ens.fr/kde">KDEns</a>. En cas de pépin, contacter <span class="tag is-info is-light">klub-dev [at] ens [dot] fr</span>.{% endblocktrans %}
|
|
</p>
|
|
</footer>
|
|
</body>
|
|
|
|
</html>
|