{% extends 'base.html' %} {% load thumbnail %} {% load static %} {# Displays article form #} {% block scripts %} {# selects for city and country #} {% endblock %} {% block body %}
{% csrf_token %}

Добавление каталога специалистов(переводчиков)

{# title #}
{{ form.title }} {{ form.title.errors }}
{# main_descr #}
{{ form.main_descr }} {{ form.main_descr.errors }}
{# benefits #}
{{ form.benefits }} {{ form.benefits.errors }}
{# big_cities #}
{{ form.big_cities }} {{ form.big_cities.errors }}
{# price #}
{{ form.price }}{{ form.currency.label }}{{ form.currency }} {{ form.price.errors }}
{# type #}
{{ form.type }} {{ form.type.errors }}
{# country #}
{{ form.country }} {{ form.country.errors }}
{# city #}
{{ form.city }} {{ form.city.errors }}
{# specialists #}
{{ form.specialists }}Довавить {{ form.specialists.errors }}
{# logo #}
{{ form.logo }} {{ form.logo.errors }}
{# place_photo #}
{{ form.place_photo }} {{ form.place_photo.errors }}

Отзывы для текущего каталога

{% if object.feedback_set.all %} {% with object.feedback_set.all as feedbacks %} {% for item in feedbacks %} {% endfor %}
Логотип Имя Компания Текст  
{% thumbnail item.logo "100x100" crop="center" as im %} {% endthumbnail %} {{ item.name }} {{ item.company }} {{ item.text }} Изменить Удалить
Хочу еще один {% endwith %} {% elif object.id %} Отзывов еще нет, Добавить {% endif %}
{% endblock %}