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