{% extends "base.html" %}
{% block title %}Template - warnings{% endblock %}
{% block headerEnd %}
{% endblock %}
{% block content %}
This page shows a list of problems found inside the database. They also mention recommended resolution.
PwnDoc templates without FID
For all rows in the table it's highly suggested to find the PwnDoc Templates
and fill in their FID attribute.
PwnDoc template name | Locale | PwnDoc template ID |
{% for templateLocale in templates_without_fids | sort(attribute='title') %}
{{ templateLocale.title }} |
{{ templateLocale.locale }} |
{{ templateLocale.pwndoc_id }} |
{% endfor %}
PwnDoc templates with non-shared custom-fields
Some fields ({{ shared_fields }}) should be same for all proper-locales (i.e. not OG). However they can become not-synchronized.
This might be indicate a technical problem but can also be deliberate decision by the analyst.
For all rows it's recommended to find the PwnDoc Templates
and check if the fields should be synchronized.
FID | Custom field |
{% for templateLocale in templates_with_non_shared_fields %}
{{ templateLocale[0] }} |
{{ templateLocale[1] }} |
{% endfor %}
{% endblock %}