{% extends "layout.html" %} {% block title %}Home - KCAP Demo Server{% endblock %} {% block content %}

KCAP Demo Server{% if tenant %} - {{ tenant.name }}{% endif %}

Manage your product catalog and AR content for barcode scanning applications.


{% 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 }} {% set matching_fields = product_data|selectattr('fieldName', 'equalto', custom_field.fieldName)|list %} {% if custom_field.fieldType == 'IMAGE_URI' %} {% if matching_fields and matching_fields[0].value %}
{{ custom_field.label }}
{% endif %} {% else %} {{ matching_fields[0].value if matching_fields else '' }} {% endif %}
Edit Barcodes
{% else %}
No products available yet. Click "Add New Product" to get started.
{% endif %}

Getting Started

  1. Configure your AR fields to define what information is returned for products
  2. Add products to your catalog with the configured fields
  3. Generate barcodes for your products
  4. Use the AR endpoints in your scanning application
{% endblock %} {% block extra_js %} {% endblock %}