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

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

{# name #}
{{ form.name }} {{ form.name.errors }}
{# languages #}
{{ form.languages }} {{ form.languages.errors }}
{# country #}
{{ form.country }} {{ form.country.errors }}
{# city #}
{{ form.city }} {{ form.city.errors }}
{# photo #}
{{ form.photo }} {{ form.photo.errors }}
{% endblock %}