2020-12-12 00:39:58 +00:00
{% load humanize %}
< div class = "content block" >
2021-01-07 02:34:21 +00:00
< input class = "toggle-control" type = "radio" name = "show-edit-readthrough-{{ readthrough.id }}" id = "show-readthrough-{{ readthrough.id }}" checked >
2020-12-12 00:39:58 +00:00
< div class = "toggle-content hidden" >
2021-01-07 02:34:21 +00:00
< dl class = "mb-1" >
2020-12-12 00:39:58 +00:00
{% if readthrough.start_date %}
2021-01-07 02:34:21 +00:00
< div class = "is-flex" >
< dt > Started reading:< / dt >
< dd > {{ readthrough.start_date | naturalday }}< / dd >
< / div >
2020-12-12 00:39:58 +00:00
{% endif %}
{% if readthrough.finish_date %}
2021-01-07 02:34:21 +00:00
< div class = "is-flex" >
< dt > Finished reading:< / dt >
< dd > {{ readthrough.finish_date | naturalday }}< / dd >
< / div >
2020-12-12 00:39:58 +00:00
{% endif %}
< / dl >
< div class = "field is-grouped" >
2021-01-14 21:02:50 +00:00
{% include 'snippets/toggle/toggle_button.html' with small=True text="Edit read dates" icon="pencil" controls_text="edit-readthrough" controls_uid=readthrough.id %}
{% include 'snippets/toggle/toggle_button.html' with small=True text="Delete these read dates" icon="x" controls_text="delete-readthrough" controls_uid=readthrough.id %}
2020-12-12 00:39:58 +00:00
< / div >
< / div >
< / div >
< div class = "block" >
2021-01-07 02:34:21 +00:00
< input class = "toggle-control" type = "radio" name = "show-edit-readthrough-{{ readthrough.id }}" id = "edit-readthrough-{{ readthrough.id }}" >
2020-12-12 00:39:58 +00:00
< div class = "toggle-content hidden" >
< div class = "box" >
< form name = "edit-readthrough" action = "/edit-readthrough" method = "post" >
2021-01-10 18:35:28 +00:00
{% include 'snippets/readthrough_form.html' with readthrough=readthrough %}
2020-12-12 00:39:58 +00:00
< div class = "field is-grouped" >
< button class = "button is-primary" type = "submit" > Save< / button >
2021-01-14 21:02:50 +00:00
{% include 'snippets/toggle/toggle_button.html' with text="Cancel" controls_text="show-readthrough" controls_uid=readthrough.id %}
2020-12-12 00:39:58 +00:00
< / div >
< / form >
< / div >
< / div >
< / div >
< div >
< input class = "toggle-control" type = "checkbox" name = "delete-readthrough-{{ readthrough.id }}" id = "delete-readthrough-{{ readthrough.id }}" >
< div class = "modal toggle-content hidden" >
< div class = "modal-background" > < / div >
< div class = "modal-card" >
< header class = "modal-card-head" >
< p class = "modal-card-title" > Delete this read-though?< / p >
< label class = "delete" for = "delete-readthrough-{{ readthrough.id }}" aria-label = "close" > < / label >
< / header >
< footer class = "modal-card-foot" >
< form name = "delete-readthrough-{{ readthrough.id }}" action = "/delete-readthrough" method = "POST" >
{% csrf_token %}
< input type = "hidden" name = "id" value = "{{ readthrough.id }}" >
< button class = "button is-danger is-light" type = "submit" >
Delete
< / button >
2021-01-14 21:02:50 +00:00
{% include 'snippets/toggle/toggle_button.html' with text="Cancel" controls_text="delete-readthrough" controls_uid=readthrough.id %}
2020-12-12 00:39:58 +00:00
< / form >
< / footer >
< / div >
< label class = "modal-close is-large" for = "delete-readthrough-{{ readthrough.id }}" aria-label = "close" > < / label >
< / div >
< / div >