{% extends 'shopyo_dashboard/dashboard_base.html' %} {% block title %}{% if item %}Edit{% else %}New{% endif %} {{ content_type.name }}{% endblock %} {% block content %}

{% if item %}Edit{% else %}New{% endif %} Item

{% for field in content_type.schema %}
{% if field.type == 'text' %} {% elif field.type == 'textarea' %} {% elif field.type == 'richtext' %}
{% elif field.type == 'image' %}
{% if item and item.data.get(field.name) %} {% else %}

Image Preview

{% endif %}
{% elif field.type == 'number' %} {% elif field.type == 'date' %} {% endif %}
{% endfor %}
Cancel
{% endblock %}