diff --git a/gestaoRaul/db.sqlite3 b/gestaoRaul/db.sqlite3
index 548a884..820daa3 100644
Binary files a/gestaoRaul/db.sqlite3 and b/gestaoRaul/db.sqlite3 differ
diff --git a/gestaoRaul/products/templates/products.html b/gestaoRaul/products/templates/products.html
index faae47f..9873ab4 100644
--- a/gestaoRaul/products/templates/products.html
+++ b/gestaoRaul/products/templates/products.html
@@ -18,73 +18,75 @@ Produtos
-
-
- | Produto |
- Preço |
- Quantidade |
- Categoria |
- Ações |
-
-
- {% for product in products %}
+
+
+ | Produto |
+ Preço |
+ Quantidade |
+ Categoria |
+ Ações |
+
+ {% for product in products %}
+
+ | {{product.name}} |
+ R$ {{product.price}} |
-
- | {{product.name}} |
- R$ {{product.price}} |
- {{product.quantity}} |
- {{product.image}} |
-
- {{product.category.name}} |
-
- |
-
- {% endfor %}
-
-
+ {% if product.active == True %}
+
+ {% else %}
+
+ {% endif %}
+
+
+
+
+ {% endfor %}
+
+