{% 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 product_id, product_data in products.items() %} {% endfor %}
Product ID Name Price Actions
{{ product_id }} {% for field in product_data %} {% if field.fieldName == '_name' %} {{ field.value }} {% endif %} {% endfor %} {% for field in product_data %} {% if field.fieldName == '_price' %} {{ field.value }} {% endif %} {% endfor %} 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 %}