1 {% extends "starts_eu/pages/page.html" %}
2 {% load i18n mezzanine_tags keyword_tags pages_tags organization_tags %}
4 {% block meta_title %}{% trans "Timesheet" %}{% endblock %}
10 {% block page_title %}
11 <h1 class="dotted">{% trans "Timesheet" %}</h1>
14 {% block page_content %}
16 <a class="pull-right button button--black" href="{% url 'organization-network-timesheet-create-view' slug current_year current_month %}" title="">Declare this month</a>
17 {{ timesheets_by_project }}
18 {% if timesheets_by_year %}
19 {% for year_k, year_v in timesheets_by_year.items %}
21 {% for project_k, project_v in year_v.items %}
22 <h3>{{ project_k }}</h3>
25 {% for timesheet in project_v %}
27 {% include "network/person_activity_timesheet/includes/person_activity_timesheet_inline.html" %}
37 <p>{% trans "No timesheet." %}</p>