{% extends 'base.html.twig' %} {% block body %}

Użytkownicy
Id Użytkownik Hasło E-mail is_active Usuń
Zmień dane użykownika.
Dodaj użytkownika
Adresy
{% for adres in adresy %} {% endfor %}
Id Id_klient country city street zip_code house_number usuń
{{ adres.id }} {{ adres.id_klient }} {{ adres.country }} {{ adres.city }} {{ adres.street }} {{ adres.zip_code }} {{ adres.house_number }} Usuń
Zamówienia
{% for order in orders %} {% endfor %}
Id Id_klient Id_product Id_adresy Id_courier Prize usuń
{{ order.id }} {{ order.id_klient }} {{ order.id_product }} {{ order.id_adresy }} {{ order.id_courier }} {{ order.prize }} Usuń
Zaktualizuj adres
Koszyk
{% for product in basket %} {% endfor %}
Id Id_klient_id Id_product_id Prize usuń
{{ product.id }} {{ product.id_klient_id }} {{ product.id_product_id }} {{ product.prize }} Usuń
Produkty, Nie można usunąć produktu jeśli ktoś ma go w koszyku
{% for product in products %} {% endfor %}
Id name picture description Prize usuń
{{ product.id }} {{ product.name }} {{ product.picture }} {{ product.description }} {{ product.prize }} Usuń
Dodaj produkt
Zaktualizuj informacje na temat produktu
Kurierzy
{% for courier in couriers %} {% endfor %}
Id Name Email Age surname usuń
{{ courier.id }} {{ courier.name }} {{ courier.surname}} {{ courier.email }} {{ courier.age }} Usuń
Dodaj kuriera
Zaktualizuj informacje na temat kuriera
Komentarze na temat produktów, nie usuwa komentarzy jeśli ktoś na nie odpowiedział
{% for comment in productComments %} {% endfor %}
Id Id_user comment date id_product usuń
{{ comment.id }} {{ comment.id_user }} {{ comment.comment }} {{ comment.date}} {{ comment.id_product }} Usuń
{% endblock %}