From d72cf0a0b3243033a6eb6003400bd89fffbefb6d Mon Sep 17 00:00:00 2001 From: kikimor Date: Fri, 11 Jul 2025 19:13:32 +0300 Subject: [PATCH] tables look almost ok --- static/styles/base.css | 0 static/styles/dashboard-content.css | 0 static/styles/sidebar.css | 0 static/styles/tables.css | 0 templates/client/booking-create.html | 16 ++++++++++++++++ templates/client/booking-edit.html | 10 ++++++++++ templates/client/booking-list.html | 10 ++++++++++ 7 files changed, 36 insertions(+) create mode 100644 static/styles/base.css create mode 100644 static/styles/dashboard-content.css create mode 100644 static/styles/sidebar.css create mode 100644 static/styles/tables.css create mode 100644 templates/client/booking-create.html create mode 100644 templates/client/booking-edit.html create mode 100644 templates/client/booking-list.html diff --git a/static/styles/base.css b/static/styles/base.css new file mode 100644 index 0000000..e69de29 diff --git a/static/styles/dashboard-content.css b/static/styles/dashboard-content.css new file mode 100644 index 0000000..e69de29 diff --git a/static/styles/sidebar.css b/static/styles/sidebar.css new file mode 100644 index 0000000..e69de29 diff --git a/static/styles/tables.css b/static/styles/tables.css new file mode 100644 index 0000000..e69de29 diff --git a/templates/client/booking-create.html b/templates/client/booking-create.html new file mode 100644 index 0000000..04f63f8 --- /dev/null +++ b/templates/client/booking-create.html @@ -0,0 +1,16 @@ +{% extends 'client-base.html' %} +{% load static %} + +{% block content %} +
+

Booking

+

Manage your booking details here.

+
+
+ {% csrf_token %} + {{ form.as_p }} + +
+{%endblock content %} + + diff --git a/templates/client/booking-edit.html b/templates/client/booking-edit.html new file mode 100644 index 0000000..4bdcfcb --- /dev/null +++ b/templates/client/booking-edit.html @@ -0,0 +1,10 @@ + + + + + $Title$ + + +$END$ + + \ No newline at end of file diff --git a/templates/client/booking-list.html b/templates/client/booking-list.html new file mode 100644 index 0000000..4bdcfcb --- /dev/null +++ b/templates/client/booking-list.html @@ -0,0 +1,10 @@ + + + + + $Title$ + + +$END$ + + \ No newline at end of file