{{ content.verbose_name }}
{% if content.margin_bottom != content.MARGIN_BOTTOM_DEFAULT %}margin bottom: {{ content.get_margin_bottom_display }}{% endif %}
{% if content.padding_top != content.PADDING_TOP_DEFAULT or content.padding_bottom != content.PADDING_BOTTOM_DEFAULT %}
padding
{% if content.padding_top != content.PADDING_TOP_DEFAULT %}top: {{ content.get_padding_top_display }}{% endif %}
{% if content.padding_bottom != content.PADDING_BOTTOM_DEFAULT %}bottom: {{ content.get_padding_bottom_display }}{% endif %}
{% endif %}
{% if content.alternate_color %}alternate color{% endif %}
{% if content.background_color %}background color: {{ content.background_color }}{% endif %}
{% if content.css_class %}class: {{ content.css_class }}{% endif %}
{% for value, label in content.admin_form.margin_bottom.field.choices %}
{{ label }}
{% endfor %}
{% for value, label in content.admin_form.padding_top.field.choices %}
{{ label }}
{% endfor %}
{% for value, label in content.admin_form.padding_bottom.field.choices %}
{{ label }}
{% endfor %}
Alternate color
{% block options %}{% endblock %}
{% block errors %}
{% if content.admin_form.non_field_errors %}
{% for error in content.admin_form.non_field_errors %}
{{ error }}
{% endfor %}
{% endif %}
{% endblock %}
{% block content %}
{% if content.preview_image %}
{% endif %}
{% for field in content.admin_form.main_fields %}
{% include 'xprez/admin/form/row.html' with field=field%}
{% endfor %}