{% extends "base.html" %} {% block title %}{{ _('Action Type') }} #{{ action_type.id }}: {{ action_type.translation.name }} — {{ service_name }}{% endblock %} {% block content %}

{{ action_type.translation.name }}

{{ _('Description') }}
{{ action_type.translation.description or ('—' | safe) }}
{{ _('Object Name (Singular)') }}
{{ action_type.translation.object_name }}
{{ _('Object Name (Plural)') }}
{{ action_type.translation.object_name_plural }}
{{ _('View Text') }}
{{ action_type.translation.view_text }}
{{ _('Perform Text') }}
{{ action_type.translation.perform_text }}
{{ _('Only for Administrators') }}
{% if action_type.admin_only %} {{ _('Yes, only administrators can create actions of this type') }}{% else %} {{ _('No, all users can create actions of this type') }}{% endif %}
{{ _('Show on Frontpage') }}
{% if action_type.show_on_frontpage %} {{ _('Yes, this action type should be shown on the frontpage') }}{% else %} {{ _('No, this action type should not be shown on the frontpage') }}{% endif %}
{{ _('Show on Navbar') }}
{% if action_type.show_in_navbar %} {{ _('Yes, actions of this type should be shown in the navbar') }}{% else %} {{ _('No, actions of this type should not be shown in the navbar') }}{% endif %}
{{ _('Enable Labels') }}
{% if action_type.enable_labels %} {{ _('Yes, labels are enabled for objects created with actions of this type') }}{% else %} {{ _('No, labels are disabled for objects created with actions of this type') }}{% endif %}
{{ _('Enable Files') }}
{% if action_type.enable_files %} {{ _('Yes, files are enabled for objects created with actions of this type') }}{% else %} {{ _('No, files are disabled for objects created with actions of this type') }}{% endif %}
{{ _('Enable Locations and Responsible Users') }}
{% if action_type.enable_locations %} {{ _('Yes, locations and responsible users are enabled for objects created with actions of this type') }}{% else %} {{ _('No, locations and responsible users are disabled for objects created with actions of this type') }}{% endif %}
{{ _('Enable Publications') }}
{% if action_type.enable_publications %} {{ _('Yes, publications are enabled for objects created with actions of this type') }}{% else %} {{ _('No, publications are disabled for objects created with actions of this type') }}{% endif %}
{{ _('Enable Comments') }}
{% if action_type.enable_comments %} {{ _('Yes, comments are enabled for objects created with actions of this type') }}{% else %} {{ _('No, comments are disabled for objects created with actions of this type') }}{% endif %}
{{ _('Enable Activity Log') }}
{% if action_type.enable_activity_log %} {{ _('Yes, the activity log is enabled for objects created with actions of this type') }}{% else %} {{ _('No, the activity log is disabled for objects created with actions of this type') }}{% endif %}
{{ _('Enable Related Objects') }}
{% if action_type.enable_related_objects %} {{ _('Yes, show related objects for objects created with actions of this type') }}{% else %} {{ _('No, do not show related objects for objects created with actions of this type') }}{% endif %}
{{ _('View Actions') }} {% if current_user.is_admin and not current_user.is_readonly %} {{ _('Edit Action Type') }} {% endif %} {% endblock %}