{% extends 'base.html' %} {% load static %} {% load static_v %} {% block title %}{{ t.title_signup }} — PickkerMarket{% endblock %} {% block extra_head %} {% endblock %} {% block content %} {% csrf_token %} {{ t.signup_title }} {% if form.non_field_errors %} {{ form.non_field_errors }} {% endif %} {{ t.signup_role_label }} {% for radio in form.role %} {{ radio.tag }} {{ radio.choice_label }} {% endfor %} {{ t.signup_account_details_heading }} {{ t.signup_email_label }} {{ form.email }} {% if form.email.errors %}{{ form.email.errors }}{% endif %} {{ t.signup_first_name }} {{ form.first_name }} {{ t.signup_last_name }} {{ form.last_name }} {{ t.signup_phone_number }} {{ form.phone_number }} {{ t.signup_preferred_language }} {{ form.preferred_language }} {{ t.signup_password_heading }} {{ t.signup_password }} {{ form.password1 }} {{ t.signup_confirm_password }} {{ form.password2 }} {% if form.password2.errors %}{{ form.password2.errors }}{% endif %} {{ t.signup_address_heading }} {{ t.signup_account_type }} {{ form.account_type }} {{ t.signup_business_name }} {{ form.business_name }} {{ t.signup_use_current_location }} {{ t.signup_address }} {{ form.address }} {{ t.signup_city }} {{ form.city }} {{ t.signup_area }} {{ form.area }} {{ t.signup_vehicle_market_heading }} {{ t.signup_vehicle_type }} {{ form.vehicle_type }} {% if form.vehicle_type.errors %}{{ form.vehicle_type.errors }}{% endif %} {{ t.signup_license_plate }} {{ form.license_plate }} {{ t.signup_market_select_label }} {{ t.signup_market_select_placeholder }} {% regroup markets by region as region_list %} {% for region in region_list %} {% for m in region.list %} {{ m.name }} {% endfor %} {% endfor %} {{ t.signup_market_location_label }} {{ t.signup_market_location_help }} {% if form.market_location.errors %}{{ form.market_location.errors }}{% endif %} {{ t.signup_use_current_location }} {{ form.market_location }} {{ form.location_lat }} {{ form.location_lng }} {{ t.signup_license_number }} {{ form.license_number }} {{ form.agree_to_policies }} {{ t.signup_agree_prefix }} {{ t.signup_agree_terms }}, {{ t.signup_agree_privacy }} {{ t.signup_agree_and }} {{ t.signup_agree_cookies }} {% if form.agree_to_policies.errors %}{{ form.agree_to_policies.errors }}{% endif %} {{ t.signup_submit }} {{ t.signup_has_account }} {{ t.signup_login_link }} {% endblock %} {% block extra_scripts %} {% endblock %}
{{ t.signup_market_location_help }}
{{ t.signup_has_account }} {{ t.signup_login_link }}