src/iconolab/templates/partials/image_annotations_list.html
changeset 85 49b3f22948d5
parent 65 625ed1ba472f
child 97 f747c112e8f4
equal deleted inserted replaced
84:9f55f0bcb29a 85:49b3f22948d5
    13             <th>Titre</th>
    13             <th>Titre</th>
    14             <th>Auteur</th>
    14             <th>Auteur</th>
    15             <th>Créée le</th>
    15             <th>Créée le</th>
    16             <th>Révisée le</th>
    16             <th>Révisée le</th>
    17             <th>Contributeurs</th>
    17             <th>Contributeurs</th>
       
    18             <th>Statistiques</th>
    18           </thead>
    19           </thead>
    19           {% for annotation in annotation_list %}
    20           {% for annotation in annotation_list %}
    20           <tr>
    21           <tr>
    21             <td>
    22             <td>
    22               <div class="fragment-container" style="position: relative">
    23               <div class="fragment-container" style="position: relative">
    39             <td>
    40             <td>
    40               {% for contributor in annotation.stats.contributors %}
    41               {% for contributor in annotation.stats.contributors %}
    41                   {{ contributor }}{% if not forloop.last %}, {% endif %}
    42                   {{ contributor }}{% if not forloop.last %}, {% endif %}
    42               {% endfor %}
    43               {% endfor %}
    43             </td>
    44             </td>
       
    45             <td>
       
    46                 {% include "partials/annotation_stats_panel.html" with annotation=annotation %}  
       
    47             </td>
    44           </tr>
    48           </tr>
    45           {% endfor %}
    49           {% endfor %}
    46         </table>
    50         </table>
    47     {% endif %}
    51     {% endif %}
    48 </ul>
    52 </ul>