{% extends "layouts/base.html" %} {% load i18n %} {% block content %} {% translate type as display_type %} {% include 'header.html' %}

{% blocktranslate %}Add a {{ display_type }}{% endblocktranslate %}

{% translate "Here you can add the asset of the client. Findings can be added to these in the findings page." %}

{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% translate type %}
{% for field in form %} {% include "partials/form/field_input_wrapper.html" %} {% endfor %}
{% endblock %}