diff options
author | Thomas Citharel <tcit@tcit.fr> | 2015-03-08 02:36:37 +0100 |
---|---|---|
committer | Thomas Citharel <tcit@tcit.fr> | 2015-03-08 02:36:37 +0100 |
commit | 512ff18015919bf3119509d1a8b8cf87b3b86f5f (patch) | |
tree | 84e4870a04e121fb909b4f308aeb6bc31d3f0c37 /themes/baggy | |
parent | 5e10eee8fc2ccc05f511180a8c92f82de6d293b0 (diff) | |
download | wallabag-512ff18015919bf3119509d1a8b8cf87b3b86f5f.tar.gz wallabag-512ff18015919bf3119509d1a8b8cf87b3b86f5f.tar.zst wallabag-512ff18015919bf3119509d1a8b8cf87b3b86f5f.zip |
implement #11221.9.1alpha1
Diffstat (limited to 'themes/baggy')
-rwxr-xr-x | themes/baggy/edit-tags.twig | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/themes/baggy/edit-tags.twig b/themes/baggy/edit-tags.twig index 15f15560..ae6684f2 100755 --- a/themes/baggy/edit-tags.twig +++ b/themes/baggy/edit-tags.twig | |||
@@ -16,7 +16,7 @@ | |||
16 | <div class="notags">{% trans "no tags" %}</div> | 16 | <div class="notags">{% trans "no tags" %}</div> |
17 | {% endif %} | 17 | {% endif %} |
18 | <ul> | 18 | <ul> |
19 | {% for tag in tags %}<li>{{ tag.value }} <a href="./?action=remove_tag&tag_id={{ tag.id }}&id={{ entry_id }}">✘</a></li>{% endfor %} | 19 | {% for tag in tags %}<li><span class="alreadytagged">{{ tag.value }}</span> <a href="./?action=remove_tag&tag_id={{ tag.id }}&id={{ entry_id }}">✘</a></li>{% endfor %} |
20 | </ul> | 20 | </ul> |
21 | <form method="post" action="./?action=add_tag"> | 21 | <form method="post" action="./?action=add_tag"> |
22 | <input type="hidden" name="entry_id" value="{{ entry_id }}" /> | 22 | <input type="hidden" name="entry_id" value="{{ entry_id }}" /> |
@@ -25,5 +25,7 @@ | |||
25 | <p>{% trans "Start typing for auto complete." %}<br> | 25 | <p>{% trans "Start typing for auto complete." %}<br> |
26 | {% trans "You can enter multiple tags, separated by commas." %}</p> | 26 | {% trans "You can enter multiple tags, separated by commas." %}</p> |
27 | </form> | 27 | </form> |
28 | All existing tags : | ||
29 | <ul>{% for eachtag in alltags %}<li class="suggestedtag" style="display: inline-block; margin:10px;">{{ eachtag.value }}</li>{% endfor %}</ul> | ||
28 | <a class="icon icon-reply return" href="./?view=view&id={{ entry_id }}">{% trans "return to article" %}</a> | 30 | <a class="icon icon-reply return" href="./?view=view&id={{ entry_id }}">{% trans "return to article" %}</a> |
29 | {% endblock %} | 31 | {% endblock %} |