#1 Allow searches to be made from the main page

This commit is contained in:
2024-01-22 10:49:08 +00:00
parent 216d71c15d
commit 897d4ab9aa
6 changed files with 24 additions and 34 deletions

View File

@ -1,7 +1,7 @@
<link rel="stylesheet" href="{{ url_for('static', filename='css/products.css') }}">
<div class="product-container">
{% if products is not None %}
{% if products != None %}
{% for product in products %}
<a href="/products/{{product.id}}" class="product product-link">
<div class="product-title">{{product.name}}</div>