Ajout d'une page unique pour les exports
This commit is contained in:
@@ -1,14 +0,0 @@
|
||||
{% block body %}
|
||||
Client;Projet;Tâche;Utilisateur;Année;Semaine;Cumul;
|
||||
{% for project in projects %}
|
||||
{% for year,weeks in project.weeks_by_task_by_user %}
|
||||
{% for week in weeks %}
|
||||
{% for task in week.tasks%}
|
||||
{% for user in task.users%}
|
||||
{{project.customer}};{{project.name}};{{task.taskname}};{{user.displayname}};{{year}};S{{week.weeknumber}};{{user.cumul|replace({".": ","})}};
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
{% endblock %}
|
@@ -111,13 +111,6 @@
|
||||
</select>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% if access!="customer" and app.user %}
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<a href="{{ path('app_report_export') }}" class="btn btn-success">Exporter</a>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% for project in projects %}
|
||||
{% if not project.months is empty or project.hors!=0 or not project.before is empty or not project.beforeastreinte is empty %}
|
||||
<div class="card">
|
||||
|
Reference in New Issue
Block a user