diff options
author | Filipp Lepalaan <filipp@mac.com> | 2016-03-21 20:37:11 +0200 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2016-03-21 20:37:11 +0200 |
commit | ec867584ef2078492d70b555ca419ea9e01dca8e (patch) | |
tree | 104c93fa71c67b18ad8e4221f8f1f9325178e04e /servo/templates/notes/view_article.html | |
parent | 1b6e5ee722f76f594e3d95dfa8d77ac2b9f2173a (diff) | |
download | Servo-ec867584ef2078492d70b555ca419ea9e01dca8e.tar.gz Servo-ec867584ef2078492d70b555ca419ea9e01dca8e.tar.bz2 Servo-ec867584ef2078492d70b555ca419ea9e01dca8e.zip |
Fixed article flag marking
Diffstat (limited to 'servo/templates/notes/view_article.html')
-rw-r--r-- | servo/templates/notes/view_article.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/servo/templates/notes/view_article.html b/servo/templates/notes/view_article.html index 99fd486..d0576eb 100644 --- a/servo/templates/notes/view_article.html +++ b/servo/templates/notes/view_article.html @@ -8,8 +8,8 @@ <i class="icon-flag"></i> <span class="caret"></span> </a> <ul class="dropdown-menu"> - <li><a href="{% url 'notes-toggle_flag' note.pk 'read' %}" class="nofollow">{{ note.get_read_title }}</a></li> - <li><a href="{% url 'notes-toggle_flag' note.pk 'flagged' %}" class="nofollow">{{ note.get_flagged_title }}</a></li> + <li><a href="{% url 'notes-toggle_flag' 'articles' note.pk 'read' %}" class="nofollow">{{ read_title }}</a></li> + <li><a href="{% url 'notes-toggle_flag' 'articles' note.pk 'flagged' %}" class="nofollow">{{ flagged_title }}</a></li> </ul> </div> {% endblock note_buttons %} |