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

{{ action_type.name }}

Description
{{ action_type.description or ('—' | safe) }}
Object Name (Singular)
{{ action_type.object_name }}
Object Name (Plural)
{{ action_type.object_name_plural }}
View Text
{{ action_type.view_text }}
Perform Text
{{ action_type.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 %} {% block scripts %} {{ super() }} {% endblock %}