You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
{% load i18n %}
< style >
. modal-body {
padding : 0 px 20 px 0 px 20 px ;
}
< / style >
< div aria-hidden = "true" role = "dialog" id = "{% block modal_id %}{% endblock %}" class = "modal inmodal" >
< div class = "modal-dialog {% block modal_class %}{% endblock %}" >
< div class = "modal-content animated fadeIn" >
< div class = "modal-header" >
< button data-dismiss = "modal" class = "close close_btn1" type = "button" > < span aria-hidden = "true" > × < / span > < span class = "sr-only" > Close< / span > < / button >
< h4 class = "modal-title" > {% block modal_title %}{% endblock %}< / h4 >
< small > {% block modal_comment %}{% endblock %}< / small >
< / div >
{% block modal_help_message %}{% endblock %}
< div class = "modal-body" >
{% block modal_body %}
{% endblock %}
< / div >
< div class = "modal-footer" >
{% block modal_button %}
< button data-dismiss = "modal" class = "btn btn-white close_btn2" type = "button" > {% trans "Close" %}< / button >
< button class = "btn btn-primary" type = "button" id = "{% block modal_confirm_id %}{% endblock %}" > {% trans 'Confirm' %}< / button >
{% endblock %}
< / div >
< / div >
< / div >
< / div >