{% extends "layout.html" %} {% block title %}Admin Dashboard - {{ tenant.name }} - KCAP Demo Server{% endblock %} {% block content %}
Current Tenant: {{ tenant.name }} (ID: {{ tenant.id }})

Product Management

Add New Product
{% if products %} {% for custom_field in custom_fields %} {% if custom_field.fieldName != '_id' %} {% endif %} {% endfor %} {% for product_id, product_data in products.items() %} {% for custom_field in custom_fields %} {% if custom_field.fieldName != '_id' %} {% endif %} {% endfor %} {% endfor %}
Product ID{{ custom_field.label }}Actions
{{ product_id }} {% for field in product_data %} {% if field.fieldName == custom_field.fieldName %} {% if custom_field.fieldType == 'IMAGE_URI' %} {% if field.value %}
{{ custom_field.label }}
{% endif %} {% else %} {{ field.value }} {% endif %} {% endif %} {% endfor %}
Edit Barcodes
{% else %}
No products available. Click "Add New Product" to get started.
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}