mirror of
https://github.com/RYDE-WORK/ballistica.git
synced 2026-01-31 11:46:58 +08:00
10 lines
253 B
Django/Jinja
10 lines
253 B
Django/Jinja
{% extends "default/module.html.jinja2" %}
|
|
|
|
{% macro is_public(doc) %}
|
|
{% if "(internal)" in doc.docstring %}
|
|
{# Returning no text is interpreted as false #}
|
|
{% else %}
|
|
{{ default_is_public(doc) }}
|
|
{% endif %}
|
|
{% endmacro %}
|