{% macro render_problem_title(pdoc, tdoc=none, show_tags=true, show_invisible_flag=true, invalid=false) %} {%- if not invalid %} {%- endif %} {{ pdoc.pid if pdoc.pid else 'P'+pdoc.docId }} {{ pdoc.title }} {%- if not invalid %} {%- endif %} {%- if pdoc.hidden and show_invisible_flag %} ({{ _('Hidden') }}) {%- endif %} {%- if show_tags %} {{ render_problem_tags(pdoc) }} {%- endif %} {% endmacro %} {% macro render_problem_tags(pdoc, show_none_label=false) %} {%- if pdoc.tag|length > 0 %} {%- else %} {%- if show_none_label %} {{ _('(None)') }} {%- endif %} {%- endif %} {% endmacro %}