first commit after reset
[mixstore.git] / src / Mixstore / StoreBundle / Resources / views / Usecase / list_content.html.twig
1 <table class="sortable">
2 <thead>
3 <th>Package</th>
4 <th>Headline</th>
5 <th data-sort="float">Grade/10</th>
6 </thead>
7 <tbody>
8 {% for ucs in usecases %}
9 <tr>
10 <td>{{ ucs.package.name }}</td>
11 <td><a href="{{ path('mixstore_store_usecase_view', { id: ucs.id }) }}">{{ ucs.headline }}</a></td>
12 <td>{{ ucs.grade }}</td>
13 </tr>
14 {% endfor %}
15 </tbody>
16 </table>