mirror of
https://github.com/almet/copanier.git
synced 2025-04-28 11:32:38 +02:00
This is made in order to have moving reponsabilities, and avoid having people taking too much responsability.
57 lines
No EOL
2.8 KiB
HTML
57 lines
No EOL
2.8 KiB
HTML
<table class="pure-table fixed-table">
|
|
<thead>
|
|
<tr>
|
|
<th>Quoi ?</th><th>Dates</th><th>Coordinatrice⋅eur</th><th>Référent⋅e⋅s produits</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<th>Création de la distribution</th>
|
|
<td>{{ delivery.dates.creation_date | date}}</td>
|
|
<td>Rappeler aux référent⋅e⋅s produit de mettre leurs prix à jour, vérifier que tous les producteurs⋅rices sont bien présentes, en ajouter si besoin</td>
|
|
<td>-</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Mise à jour des prix</th>
|
|
<td>Du {{ delivery.dates.price_update_start | date }} au {{ delivery.dates.price_update_deadline | date}}</td>
|
|
<td>—</td>
|
|
<td>Les référent⋅e⋅s produit mettent les prix à jour.</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Commandes</td>
|
|
<td>Du {{ delivery.dates.price_update_deadline | date }} au {{ delivery.dates.order_before | date }}</td>
|
|
<td>Envoyer le lien de commande aux groupes pour qu'iels commandent</td>
|
|
<td>—</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Ajustements</th>
|
|
<td>Du {{ delivery.dates.order_before | date }} au {{ delivery.dates.adjustment_deadline | date }}</td>
|
|
<td>S'assurer que les ajustements sont bien faits par les participant⋅e⋅s</td>
|
|
<td>Faire les ajustements à la main si besoin</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Approvisionnements</th>
|
|
<td>Du {{ delivery.dates.adjustment_deadline | date }} au {{ delivery.dates.delivery_date | date }}</td>
|
|
<td><a href="{{ url_for('send_referent_emails', id=delivery.id) }}">Envoyer les infos de commande aux référent⋅e⋅s</a></td>
|
|
<td>Faire les commandes aux producteurs⋅rices, <strong>récupérer les produits</strong></td>
|
|
</tr>
|
|
<tr>
|
|
<th>Préparation de la distribution</th>
|
|
<td>La veille du {{ delivery.dates.delivery_date | date }}</td>
|
|
<td><a href="{{ url_for('show_orders_summary', id=delivery.id) }}">Imprimer les bons de commandes par colocation</a></td>
|
|
<td>—</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Distribution</th>
|
|
<td>{{ delivery.dates.delivery_date | date }}</td>
|
|
<td>Coordonner la distribution, <a href="{{ url_for('compute_payments', id=delivery.id) }}">faire la répartition des chèques</a></td>
|
|
<td>Arriver 30mn avant le début de la distribution, répartir les produits par coloc</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Transmission</th>
|
|
<td>Après la distribution</td>
|
|
<td><a href="{{ url_for('hand_over_delivery', id=delivery.id) }}">Passer le relai à la nouvelle personne référente</a></a></td>
|
|
<td>—</td>
|
|
</tr>
|
|
</tbody>
|
|
</table> |