diff options
Diffstat (limited to 'templates/manage.html.j2')
| -rw-r--r-- | templates/manage.html.j2 | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/templates/manage.html.j2 b/templates/manage.html.j2 index 551e941..68847e2 100644 --- a/templates/manage.html.j2 +++ b/templates/manage.html.j2 @@ -64,10 +64,15 @@ disabled {% if last_choice_id == choice.id %}id="last-end-datetime"{% endif %}> </td> - <td> + <td class="button-wrapper-desktop"> <input class="red" type="submit" value="Delete"> </td> </tr> + <tr colspan="1" class="button-wrapper-mobile"> + <td> + <input class="red" type="submit" value="Delete"> + </td> + </tr> </form> {% endfor %} <form action="/manage/{{ poll.manage_code }}/add_choice" method="post"> @@ -84,6 +89,11 @@ name="end_datetime" required> </td> + <td class="button-wrapper-desktop"> + <input class="blue" type="submit" value="Add"> + </td> + </tr> + <tr class="button-wrapper-mobile"> <td> <input class="blue" type="submit" value="Add"> </td> |
