diff options
author | Filipp Lepalaan <filipp@mac.com> | 2016-11-03 09:25:22 +0200 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2016-11-03 09:25:22 +0200 |
commit | 920bda8b69d2f2c078d369fe25684c437c50e40f (patch) | |
tree | ce7886a78524d39c0a146045df91098cd914368c /servo/templates/notes | |
parent | 31ad3792ab44c7a1f3c66f54488b5e716c23990a (diff) | |
download | Servo-920bda8b69d2f2c078d369fe25684c437c50e40f.tar.gz Servo-920bda8b69d2f2c078d369fe25684c437c50e40f.tar.bz2 Servo-920bda8b69d2f2c078d369fe25684c437c50e40f.zip |
Use url name instead of view
Diffstat (limited to 'servo/templates/notes')
-rwxr-xr-x | servo/templates/notes/view_note.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/servo/templates/notes/view_note.html b/servo/templates/notes/view_note.html index 8f51406..01118cf 100755 --- a/servo/templates/notes/view_note.html +++ b/servo/templates/notes/view_note.html @@ -30,9 +30,9 @@ {% endfor %} <div class="form-actions"> <div class="pull-right"> - <a href="{% url 'servo.views.order.create' note_id=note.id %}" class="btn {% if note.order.id %} disabled {% endif %}">{% trans "Create Order" %}</a> + <a href="{% url 'orders-create_with_note' note_id=note.id %}" class="btn {% if note.order.id %} disabled {% endif %}">{% trans "Create Order" %}</a> <a href="{% url 'notes-delete_note' note.id %}" class="btn btn-danger" data-modal="#modal">{% trans "Delete" %}</a> - <a href="{% url 'servo.views.note.edit' parent=note.id %}" class="btn btn-primary">{% trans "Reply" %}</a> + <a href="{% url 'notes-reply' parent=note.id %}" class="btn btn-primary">{% trans "Reply" %}</a> </div> </div> {% endblock view_message %} |