-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
100 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 56 additions & 0 deletions
56
app/apps/regie/templates/melding/part_taak_verwijderen.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
{% load rotterdam_formulier_html %} | ||
{% load vind_in_dict from querystring_tags %} | ||
{% load to_date from date_tags %} | ||
{% load json_encode from json_tags %} | ||
|
||
<turbo-frame id="melding_actie_form"> | ||
<div class="modal-dialog modal-dialog--small"> | ||
<div class="modal-content"> | ||
<div class="modal-header"> | ||
<h1> | ||
<span>Verwijder taak</span> | ||
</h1> | ||
<button | ||
type="button" | ||
class="btn-close" | ||
aria-label="Sluit" | ||
data-action="detail#closeModal"> | ||
</button> | ||
</div> | ||
<div class="modal-body"> | ||
<form | ||
action="{% url 'taak_verwijderen' melding.uuid %}" | ||
method="post" | ||
class="form--horizontal" | ||
data-controller="" | ||
data-turbo-frame="_top" | ||
enctype="multipart/form-data" | ||
> | ||
|
||
{% csrf_token %} | ||
|
||
{{ form.taaktype|render_rotterdam_formulier }} | ||
<div class="form-control__with-helptext"> | ||
{{ form.bericht|render_rotterdam_formulier }} | ||
</div> | ||
<div class="form-row btn-row"> | ||
<button | ||
type="reset" | ||
class="btn btn-tertiary" | ||
data-controller="detail" | ||
data-action="detail#closeModal" | ||
> | ||
<span>Annuleren</span> | ||
</button> | ||
<button | ||
type="submit" | ||
class="btn btn-action" | ||
> | ||
<span>Verwijder taak</span> | ||
</button> | ||
</div> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
</turbo-frame> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters