politikorama/app/view/core/home.html

32 lines
589 B
HTML

{% extends "base.html" %}
{% block content %}
{%if g.motd%}
<h1>{{_("Le dossier du moment")}}</h1>
<h2>{{g.motd.name}}</h2>
<p>{{g.motd.description}}</p>
{%endif%}
{%if g.last_stances%}
<h1>{{_("Les dernières prises de positions")}}</h1>
<ul>
{%for stance in g.last_stances%}
<li>{{stance.representative.name}} - {{stance.subject}} (le {{stance.date.date()}})</li>
{%endfor%}
</ul>
{%endif%}
{%if g.last_decisions%}
<h1>{{_("Les dernières décisions")}}</h1>
{%endif%}
{%if g.rotd%}
<h1>{{_("Le répresentant du jour")}}</h1>
{{g.rotd.name}}
{%endif%}
{% endblock %}