-
Notifications
You must be signed in to change notification settings - Fork 3
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
6 changed files
with
124 additions
and
5 deletions.
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
30 changes: 30 additions & 0 deletions
30
isatemplates/templates/isatemplates/template_confirm_delete.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,30 @@ | ||
{% extends 'projectroles/base.html' %} | ||
|
||
{% block title %}Confirm ISA-Tab Template Deletion{% endblock %} | ||
|
||
{% block projectroles %} | ||
|
||
<div class="container-fluid sodar-subtitle-container"> | ||
<h2>Confirm ISA-Tab Template Deletion</h2> | ||
</div> | ||
|
||
<div class="container-fluid sodar-page-container"> | ||
<div class="alert alert-warning" role="alert"> | ||
Are you sure you want to delete the ISA-Tab template | ||
"{{ object.description }}"? This can <strong>not</strong> be undone! | ||
</div> | ||
<form method="post"> | ||
{% csrf_token %} | ||
<div class="btn-group pull-right" role="group"> | ||
<a role="button" class="btn btn-secondary" | ||
href="{% url 'isatemplates:list' %}"> | ||
<i class="iconify" data-icon="mdi:arrow-left-circle"></i> Cancel | ||
</a> | ||
<button type="submit" class="btn btn-danger sodar-btn-submit-once"> | ||
<i class="iconify" data-icon="mdi:close-thick"></i> Delete | ||
</button> | ||
</div> | ||
</form> | ||
</div> | ||
|
||
{% endblock projectroles %} |
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