2025-07-12 02:24:27 +00:00
|
|
|
{% extends "_base/function.html.jinja" %}
|
|
|
|
|
2025-07-12 17:20:35 +00:00
|
|
|
{% block logs scoped %}
|
|
|
|
{% if config.extra.template_log_display %}<p style="color:red">function.html.jinja</p>{% endif %}
|
2025-07-12 02:24:27 +00:00
|
|
|
{% endblock logs %}
|
|
|
|
|
2025-07-12 17:20:35 +00:00
|
|
|
{% block heading scoped %}
|
|
|
|
{% if config.extra.class_style != 'simple' %}{{ super() }}{% endif %}
|
|
|
|
{% endblock heading %}
|
|
|
|
|
|
|
|
{% block labels scoped %}
|
|
|
|
{% if config.extra.class_style != 'simple' %}{{ super() }}{% endif %}
|
|
|
|
{% endblock labels %}
|
|
|
|
|
|
|
|
{% block signature scoped %}
|
|
|
|
{% if config.extra.class_style != 'simple' %}{{ super() }}{% endif %}
|
|
|
|
{% endblock signature %}
|
|
|
|
|
|
|
|
{% block contents scoped %}{% if config.extra.class_style != 'simple' %}{{ super() }}{% endif %}
|
|
|
|
{% endblock contents %}
|
2025-07-12 02:24:27 +00:00
|
|
|
|