diff options
author | 2012-12-22 20:32:58 +0100 | |
---|---|---|
committer | 2012-12-22 20:32:58 +0100 | |
commit | 6e0413b2e036b8fff997bcd1d6017681cdd91cfd (patch) | |
tree | 351eb28c2ab192785d19d4eb18166f42b9eae3d6 /module/web/templates/default/backbone/modal.html | |
parent | updated header, more responsive for smaller width (diff) | |
download | pyload-6e0413b2e036b8fff997bcd1d6017681cdd91cfd.tar.xz |
improved modal dialogs, added one for link grabber
Diffstat (limited to 'module/web/templates/default/backbone/modal.html')
-rw-r--r-- | module/web/templates/default/backbone/modal.html | 8 |
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">×</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 |