summaryrefslogtreecommitdiffstats
path: root/module/web/templates/default/backbone/modal.html
diff options
context:
space:
mode:
Diffstat (limited to 'module/web/templates/default/backbone/modal.html')
-rw-r--r--module/web/templates/default/backbone/modal.html8
1 files changed, 6 insertions, 2 deletions
diff --git a/module/web/templates/default/backbone/modal.html b/module/web/templates/default/backbone/modal.html
index afc5d7b58..467c85437 100644
--- a/module/web/templates/default/backbone/modal.html
+++ b/module/web/templates/default/backbone/modal.html
@@ -1,11 +1,15 @@
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
- <h3><%- header %></h3>
+ <h3>{% block header%}Dialog{% endblock %}</h3>
</div>
<div class="modal-body">
- <%- content %>
+ {% block content %}
+ <%= content %>
+ {% endblock %}
</div>
<div class="modal-footer">
+ {% block buttons %}
<a href="#" class="btn btn-close">Close</a>
<a href="#" class="btn btn-primary">Save</a>
+ {% endblock %}
</div> \ No newline at end of file