{% extends "wizard.html" %} {% load staticfiles %} {% block title %} Wizard - Start {% endblock %} {% block page-title %}
  • First Time Setup
  • {% endblock %} {% block css %} {{ block.super }} {% endblock %} {% block content %}
    In order to start configuring your newly installed plugin, we need to know where this server's located, and what's the currency you'll be using throughout this application.
    {% csrf_token %} {{ form.non_field_errors }}
    {{ form.country.errors }}
    {{ form.country }}
    {{ form.bussiness_name.errors }}
    {{ form.bussiness_name }}
    {{ form.contact_first_name.errors }}
    {{ form.contact_first_name }}
    {{ form.contact_last_name.errors }}
    {{ form.contact_last_name }}
    {{ form.notification_email.errors }}
    {{ form.notification_email }}
    {{ form.currency_code.errors }}
    {{ form.currency_code }}
    {{ form.currency_symbol.errors }}
    {{ form.currency_symbol }}
    {{ form.accepted_privacy_policy.errors }} {{ form.accepted_privacy_policy }}


    {% endblock %}