- {{ incomplete(this) }}
- {% block main %}
- {{ this.body }}
-
- {% for child in this.children %}
- {% if not child.hide_from_index %}
-
-
{{ child.summary }}
- {% endif %}
- {% endfor %}
- {% endblock %}
-
- {%- if this.alt != config.primary_alternative -%}
-
{{ t_missing_translations }}:
- {%- for page in site.query('/', alt=this.alt) recursive -%}
- {%- if not page.alt in get_alts(source=page, fallback=False) -%}
-
-
- {{ page['title'] or page['name'] or page.record_label }}
-
- {%- endif -%}
- {%- if page.children -%}
- {{- loop(page.children) -}}
-
- {%- endif -%}
- {%- endfor -%}
-
-
{{ t_outdated_translations }}:
- {%- for page in site.query('/', alt=this.alt) recursive -%}
- {%- if is_alt_outdated(page) -%}
-
-
- {{ page['title'] or page['name'] or page.record_label }}
-
- {%- endif -%}
- {%- if page.children -%}
- {{- loop(page.children) -}}
-
- {%- endif -%}
- {%- endfor -%}
- {%- endif -%}
-
-