diff options
| -rw-r--r-- | ishtar_common/templates/ishtar/forms/qa_message.html | 24 | 
1 files changed, 24 insertions, 0 deletions
diff --git a/ishtar_common/templates/ishtar/forms/qa_message.html b/ishtar_common/templates/ishtar/forms/qa_message.html new file mode 100644 index 000000000..711aab492 --- /dev/null +++ b/ishtar_common/templates/ishtar/forms/qa_message.html @@ -0,0 +1,24 @@ +{% load i18n inline_formset table_form %} + +<div class="modal-dialog {% if modal_size == 'large' %}modal-lg {% elif modal_size == 'small'%}modal-sm {% endif%}modal-dialog-centered"> +    <div class="modal-content"> +        <div class="modal-header"> +            <h2>{{page_name|safe}}</h2> +            <button type="button" class="close" data-dismiss="modal" aria-label="Close"> +                <span aria-hidden="true">×</span> +            </button> +        </div> +        <div class="modal-body body-scroll"> +            {{message}} +        </div> +    </div> +</div> +<script type="text/javascript"> +    {% block js %} +    {% endblock %} +    $(document).ready(function(){ +        qa_action_register("{{url}}"); +    }); +</script> + +  | 
