mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
12 lines
271 B
Twig
12 lines
271 B
Twig
{% extends template.layout ?: "theme::layouts/default" %}
|
|
|
|
{% block content %}
|
|
{{ content|raw }}
|
|
|
|
{% if form.mode == 'edit' %}
|
|
<script>
|
|
const ad = JSON.parse(`{{ form.entry|json_encode|raw }}`)
|
|
</script>
|
|
{% endif %}
|
|
{% endblock %}
|