{% extends "pages/base.html" %} {% load i18n %} {% block title %}{% trans "Charger Vendor Integration Submission" %}{% endblock %} {% block content %}

{% trans "Share your chargers for Arthexis integration review" %}

{% trans "Use this form to tell us about your charger lineup, OCPP support, and operational workflows so we can evaluate how Arthexis can integrate with your platform and field processes." %}

{% csrf_token %} {% if form.non_field_errors %} {% endif %}
{% include "tasks/includes/form_field.html" with field=form.company_name wrapper_class="" %}
{% include "tasks/includes/form_field.html" with field=form.charger_brand wrapper_class="" %}
{% include "tasks/includes/form_field.html" with field=form.contact_name wrapper_class="" %}
{% include "tasks/includes/form_field.html" with field=form.contact_email wrapper_class="" %}
{% include "tasks/includes/form_field.html" with field=form.contact_phone wrapper_class="" %}
{% include "tasks/includes/form_field.html" with field=form.website wrapper_class="" %}
{% include "tasks/includes/form_field.html" with field=form.charger_models wrapper_class="mt-4" %}
{% include "tasks/includes/form_field.html" with field=form.ocpp_versions wrapper_class="" %}
{% include "tasks/includes/form_field.html" with field=form.api_documentation_url wrapper_class="" %}
{% include "tasks/includes/form_field.html" with field=form.connectivity_summary %}
{% include "tasks/includes/form_field.html" with field=form.deployment_regions wrapper_class="" %}
{% include "tasks/includes/form_field.html" with field=form.deployment_volume wrapper_class="" %}
{% include "tasks/includes/form_field.html" with field=form.certification_summary %} {% include "tasks/includes/form_field.html" with field=form.remote_access_method %} {% include "tasks/includes/form_field.html" with field=form.hardware_notes %} {% include "tasks/includes/form_field.html" with field=form.integration_goals %} {% include "tasks/includes/form_field.html" with field=form.additional_notes %}
{% trans "We review submissions so Arthexis can integrate with the right charger APIs, OCPP behaviors, and operational workflows instead of building disconnected side systems." %}

{% trans "What we evaluate" %}

  • {% trans "Protocol support, especially OCPP behavior, firmware workflows, and diagnostics." %}
  • {% trans "How Arthexis can model your APIs and business processes through Django apps and migrations." %}
  • {% trans "Operational fit for monitoring, ticketing, remote support, and fleet administration." %}
  • {% trans "What documentation, sandbox access, or sample hardware we may need for a reliable integration plan." %}
{% endblock %}