Related to (#421): Fixed base template Blog, Blog Post, Login, App pages Started with porting Unit Template to Website Group Template
15 lines
200 B
HTML
15 lines
200 B
HTML
{% extends base_template %}
|
|
|
|
{% block content %}
|
|
{{ content }}
|
|
|
|
{%- if access -%}
|
|
<script>
|
|
$(function() {
|
|
wn.provide("wn");
|
|
wn.access = {{ access|json }};
|
|
})
|
|
</script>
|
|
{%- endif -%}
|
|
|
|
{% endblock %}
|