seitime-frappe/webnotes/templates/generators/website_group.html
Anand Doshi ffe082d7a9 Response to a Website Page Request would be json content if ajax else full page html
Related to (#421):
Fixed base template
Blog, Blog Post, Login, App pages
Started with porting Unit Template to Website Group Template
2014-02-03 11:35:18 +05:30

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 %}