{% extends "wizard.html" %} {% block title %} Initial Config{% endblock %} {% block page-title %}
  • First Time Wizard
  • {% endblock %} {% block content %}

    Welcome to NEXTOR's Cost Reporting Plugin!

    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 %} {% block js %} {{ block.super }} {% endblock %}