{% extends "base.html" %} {% block title %}ACA Dashboard — Stores{% endblock %} {% block extra_css %} {% load static %} {% endblock %} {% block body %}

Connected Stores

{{ active_stores }} active out of {{ total_stores }} registered

Add Store
{% if store_data %}
{% for item in store_data %}
{% if item.store.logo %} {% else %}
{{ item.store.name|first }}
{% endif %}

{{ item.store.name }}

{{ item.store.slug }}
{{ item.store.is_active|yesno:"Active,Inactive" }}
{{ item.store.base_api_url }}
{{ item.store.get_auth_method_display }}
{{ item.store.priority }}
{% if item.last_health %}
{{ item.last_health.response_time_ms }}ms — HTTP {{ item.last_health.status_code }} {% if item.uptime is not None %} {{ item.uptime }}% {% endif %}
{% endif %}
{% csrf_token %}
Edit
{% csrf_token %}
{% endfor %}
{% else %}

No stores connected

Add your first eCommerce store to start aggregating products.

Add Your First Store
{% endif %}
{% endblock %}