chrono/chrono/manager/templates/chrono/manager_home.html

23 lines
432 B
HTML

{% extends "chrono/manager_base.html" %}
{% load i18n %}
{% block appbar %}
<h2>{% trans 'Agendas' %}</h2>
{% endblock %}
{% block content %}
{% if object_list %}
<div class="objects-list">
</div>
{% else %}
<div class="big-msg-info">
{% blocktrans %}
This site doesn't have any agenda yet. Click on the "New" button in the top
right of the page to add a first one.
{% endblocktrans %}
</div>
{% endif %}
{% endblock %}