diff options
author | Filipp Lepalaan <filipp@mac.com> | 2015-10-26 15:51:29 +0200 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2015-10-26 15:51:29 +0200 |
commit | 9443569fb4f50222da03ce5f4d94eb56938ced8f (patch) | |
tree | 7d3cec701118980e43583e22cf4642a1641de8c9 /servo | |
parent | 052f2a44c8b1d809060c1d9501d31f71e8ef79e8 (diff) | |
download | Servo-9443569fb4f50222da03ce5f4d94eb56938ced8f.tar.gz Servo-9443569fb4f50222da03ce5f4d94eb56938ced8f.tar.bz2 Servo-9443569fb4f50222da03ce5f4d94eb56938ced8f.zip |
Say "Send" when sending
Diffstat (limited to 'servo')
-rwxr-xr-x | servo/templates/notes/form.html | 2 | ||||
-rw-r--r-- | servo/views/note.py | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/servo/templates/notes/form.html b/servo/templates/notes/form.html index c4eda72..ae0f019 100755 --- a/servo/templates/notes/form.html +++ b/servo/templates/notes/form.html @@ -99,7 +99,7 @@ {% if note.pk %} <a class="btn btn-danger" href="{% url 'notes-delete_note' note.pk %}" data-modal="#modal">{% trans "Delete" %}</a> {% endif %} - <input type="submit" class="btn btn-primary" value="{% trans "Save" %}"/> + <button type="submit" class="btn btn-primary">{{ command }}</button> </div> </form> {% endblock second_column %} diff --git a/servo/views/note.py b/servo/views/note.py index 19dba8a..eb19c61 100644 --- a/servo/views/note.py +++ b/servo/views/note.py @@ -118,12 +118,14 @@ def edit(request, pk=None, order_id=None, parent=None, recipient=None, customer= """ to = [] order = None + command = _('Save') note = Note(order_id=order_id) excluded_emails = note.get_excluded_emails() if recipient is not None: to.append(recipient) - + command = _('Send') + if order_id is not None: order = get_object_or_404(Order, pk=order_id) |