mirror of
https://github.com/fergalmoran/dss.git
synced 2026-01-29 12:17:23 +00:00
16 lines
552 B
HTML
Executable File
16 lines
552 B
HTML
Executable File
<div class="modal hide fade" tabindex="-1">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|
{% block header %}
|
|
{% endblock %}
|
|
</div>
|
|
<div class="modal-body">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
<div class="modal-footer">
|
|
{% block extrabuttons %}{% endblock %}
|
|
<a href="#" data-dismiss="modal" aria-hidden="true" class="btn btn-primary">{% block primarybutton %}{% endblock %}</a>
|
|
</div>
|
|
</div>
|