{% 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. {% for templateLocale in templates_without_fids | sort(attribute='title') %} {% endfor %}
PwnDoc template nameLocalePwnDoc template ID
{{ templateLocale.title }} {{ templateLocale.locale }} {{ templateLocale.pwndoc_id }}



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. {% for templateLocale in templates_with_non_shared_fields %} {% endfor %}
FIDCustom field
{{ templateLocale[0] }} {{ templateLocale[1] }}
{% endblock %}