{% extends 'generic/object.html' %}
{% load helpers %}
{% load plugins %}
{% load i18n %}
{% block content %}
{% trans "Name" %} |
{{ object.name }} |
{% trans "Enabled" %} |
{% checkmark object.enabled %} |
{% trans "Group Name" %} |
{{ object.group_name|placeholder }} |
{% trans "Weight" %} |
{{ object.weight }} |
{% trans "Button Class" %} |
{{ object.get_button_class_display }} |
{% trans "New Window" %} |
{% checkmark object.new_window %} |
{% for ct in object.content_types.all %}
{{ ct }} |
{% endfor %}
{% plugin_left_page object %}
{% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}