{% extends 'generic/_base.html' %} {% load i18n %} {% block breadcrumbs %} {% endblock %} {% block title %}{% trans "Install Built-in Types" %}{% endblock %} {% block controls %}
{% trans "Cancel" %}
{% endblock %} {% block content %}
{% csrf_token %}

{% trans "Customize the name to install a type multiple times under different names. Existing names will be skipped." %}

{% for t in builtin_types %} {% endfor %}
{% trans "Built-in" %} {% trans "Name (editable)" %} {% trans "Area" %} {% trans "Fields" %}
{% if not t.already_installed %} {% endif %} {% if t.icon %}{% endif %} {{ t.name }} {% if t.already_installed %} installiert {% endif %} {% if not t.already_installed %} {% else %} {{ t.name }} {% endif %} {{ t.area }} {% for fd in t.field_definitions %}{% if fd.name %} {{ fd.name }}{% if not forloop.last %}, {% endif %} {% endif %}{% empty %}—{% endfor %}
{{ t.field_definitions_json }}
{% endblock %}