adds remove button to all calendars

This commit is contained in:
2020-07-25 19:45:37 +02:00
parent 9ecaf0211f
commit 5ec5ba488d
2 changed files with 30 additions and 21 deletions

View File

@ -9,6 +9,13 @@
{% for item in calendars %}
<div class="container">
<!--action button-->
<div style="width: 4rem; margin: 1rem;">
<form action="" method="post">
<input type="hidden" name="calendar" value={{ item.calendarId }}>
<input type="submit" name="submit" value="Remove">
</form>
</div>
<!--Name-->
<div style="width: 15rem; margin: 1rem;">{{ item.name }}</div>