Commit f437a4d0eca7bc1323fb5fd2f029fc507a2f1326
1 parent
ddb02ef0
Exists in
master
and in
4 other branches
Use feather-link for categories and labels
Showing
2 changed files
with
6 additions
and
12 deletions
Show diff stats
app/main/templates/categories.html
@@ -8,18 +8,15 @@ | @@ -8,18 +8,15 @@ | ||
8 | <thead> | 8 | <thead> |
9 | <tr> | 9 | <tr> |
10 | <th scope="col" class="col-10">Catégories</th> | 10 | <th scope="col" class="col-10">Catégories</th> |
11 | - <th scope="col" class="col-1">Modifier</th> | ||
12 | - <th scope="col" class="col-1">Effacer</th> | 11 | + <th scope="col" class="col-1">Éditer</th> |
13 | </tr> | 12 | </tr> |
14 | </thead> | 13 | </thead> |
15 | <tbody> | 14 | <tbody> |
16 | {% for category in categories %} | 15 | {% for category in categories %} |
17 | <tr> | 16 | <tr> |
18 | <td>{{ category.name }}</td> | 17 | <td>{{ category.name }}</td> |
19 | - <td><a title="Modifier" href="{{ url_for('main.category_edit', category_id=category.id) }}"><i | ||
20 | - data-feather="edit"></i></a></td> | ||
21 | - <td><a title="Effacer" href="{{ url_for('main.category_delete', category_id=category.id) }}"><i | ||
22 | - data-feather="trash-2"></i></a></td> | 18 | + <td>{{ commons.edit_link(url_for('main.category_edit', category_id=category.id)) }} |
19 | + {{ commons.delete_link( url_for('main.category_delete', category_id=category.id)) }}</td> | ||
23 | </tr> | 20 | </tr> |
24 | {% endfor %} | 21 | {% endfor %} |
25 | </tbody> | 22 | </tbody> |
app/main/templates/labels.html
@@ -8,18 +8,15 @@ | @@ -8,18 +8,15 @@ | ||
8 | <thead> | 8 | <thead> |
9 | <tr> | 9 | <tr> |
10 | <th scope="col" class="col-10">Labels</th> | 10 | <th scope="col" class="col-10">Labels</th> |
11 | - <th scope="col" class="col-1">Modifier</th> | ||
12 | - <th scope="col" class="col-1">Effacer</th> | 11 | + <th scope="col" class="col-1">Éditer</th> |
13 | </tr> | 12 | </tr> |
14 | </thead> | 13 | </thead> |
15 | <tbody> | 14 | <tbody> |
16 | {% for label in labels %} | 15 | {% for label in labels %} |
17 | <tr> | 16 | <tr> |
18 | <td>{{ label.name }}</td> | 17 | <td>{{ label.name }}</td> |
19 | - <td><a title="Modifier" href="{{ url_for('main.label_edit', label_id=label.id) }}"><i | ||
20 | - data-feather="edit"></i></a></td> | ||
21 | - <td><a title="Effacer" href="{{ url_for('main.label_delete', label_id=label.id) }}"><i | ||
22 | - data-feather="trash-2"></i></a></td> | 18 | + <td>{{ commons.edit_link(url_for('main.label_edit', label_id=label.id)) }} |
19 | + {{ commons.delete_link( url_for('main.label_delete', label_id=label.id)) }}</td> | ||
23 | </tr> | 20 | </tr> |
24 | {% endfor %} | 21 | {% endfor %} |
25 | </tbody> | 22 | </tbody> |