diff options
author | luxagraf <sng@luxagraf.net> | 2023-07-26 08:38:56 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2023-07-26 08:38:56 -0500 |
commit | 0a34300e9f3de1d16deae6e7c61786763105f188 (patch) | |
tree | fa684782242678251a44fac074b3c8473b15af2a /app/notes/templates | |
parent | 547b4dfe7ffcef5062046180000ff669412b208a (diff) |
notes: updated the form to have two buttons and not require a post
Diffstat (limited to 'app/notes/templates')
-rw-r--r-- | app/notes/templates/notes/note_form.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/notes/templates/notes/note_form.html b/app/notes/templates/notes/note_form.html index 48ccde1..e360345 100644 --- a/app/notes/templates/notes/note_form.html +++ b/app/notes/templates/notes/note_form.html @@ -9,6 +9,7 @@ </fieldset> <small class="alert">{% if field.errors %}{{field.errors}}{% endif %}</small> {%endfor%} + <input class="btn" type="submit" name="add_new" value="Save and add another" /> <input type="submit" name="save" class="btn" value="Save" /> </form> </main> |