blob: a7be3554b59c83f849a126769ea6932773a07608 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{% extends "base.html" %}
{% load i18n %}
{% block extra_meta %}{% if extra_meta %}
{{extra_meta|safe}}
{% endif %}{% endblock %}
{% block content %}
{% if view_content %}
<div class="container">
{{view_content|safe}}
</div>
{% else %}
<script type='text/javascript'>
$(document).ready(
{% if show_url %}
function(){
load_window("{{show_url}}");
});{% endif %}
</script>
{% endif %}
{% endblock %}
|