diff --git a/core/templates/core/index.html b/core/templates/core/index.html index faec813..3e74e35 100644 --- a/core/templates/core/index.html +++ b/core/templates/core/index.html @@ -1,145 +1,82 @@ {% extends "base.html" %} +{% load static %} -{% block title %}{{ project_name }}{% endblock %} - -{% block head %} - - - - -{% endblock %} +{% block title %} + !!!Inventory Dashboard!!! +{% endblock title %} {% block content %}
-
-

Analyzing your requirements and generating your app…

-
- Loading… +
+
+
+
+
+
+
+
+

Inventory Dashboard

+

+ A modern dashboard to monitor products, stock levels, and adjustments. +

+
+
+ +
+
+

All Products

+ +
+ +
+ {% for product in products %} +
+
+
+
+
{{ product.name }}
+
{{ product.sku }}
+
+ {% if product.is_low_stock %} + + Low Stock + + {% else %} + + In Stock + + {% endif %} +
+
+
+ {{ product.stock_level }} + Units +
+
+
+
+
+
+ +
+ {% empty %} +
+
+

No products found.

+

Add your first product to see it here.

+
+
+ {% endfor %} +
-

AppWizzy AI is collecting your requirements and applying the first changes.

-

This page will refresh automatically as the plan is implemented.

-

- Runtime: Django {{ django_version }} · Python {{ python_version }} - — UTC {{ current_time|date:"Y-m-d H:i:s" }} -

-
- -{% endblock %} \ No newline at end of file +{% endblock content %}