19 lines
464 B
HTML
19 lines
464 B
HTML
{% include "templates/includes/post_editor.html" %}
|
|
|
|
<script>
|
|
wn.require("/assets/js/canvasResize.min.js");
|
|
$(function() {
|
|
website.bind_add_post();
|
|
|
|
{%- if view.name == "edit" -%}
|
|
website.bind_save_post();
|
|
{% if post -%} website.post = "{{ post.name }}"; {%- endif %}
|
|
{%- endif -%}
|
|
|
|
{%- if group.group_type == "Events" -%}
|
|
website.setup_event_editor();
|
|
{%- elif group.group_type == "Tasks" -%}
|
|
website.setup_tasks_editor();
|
|
{%- endif -%}
|
|
});
|
|
</script>
|