summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorBobby <[email protected]>2026-01-20 14:19:25 +0530
committerBobby <[email protected]>2026-01-20 14:19:25 +0530
commita04faab2a7c031b95e6e7553f9921c3bada2bc08 (patch)
tree91c77399eac06aeb7417ed367123321f223bcfd7 /templates
parent97459ee6173299aa352ac29b2a77dd8df7e3ab3d (diff)
downloadcafe-a04faab2a7c031b95e6e7553f9921c3bada2bc08.tar.xz
cafe-a04faab2a7c031b95e6e7553f9921c3bada2bc08.zip
Implemented processors and add HTTPRequest and HTTPQueryParam types and Created utility functions for building request metadata.
Diffstat (limited to 'templates')
-rw-r--r--templates/pages/home.django7
1 files changed, 4 insertions, 3 deletions
diff --git a/templates/pages/home.django b/templates/pages/home.django
index eef2f81..7ceeae7 100644
--- a/templates/pages/home.django
+++ b/templates/pages/home.django
@@ -1,12 +1,13 @@
{% extends "layouts/base.django" %}
-{% block title %}Home - Shifoo's Cafe{% endblock %}
+{% block title %}{{ Title }}{% endblock %}
{% block content %}
<div class="min-h-screen flex items-center justify-center">
<div class="text-center">
- <h1 class="text-4xl font-bold mb-4">Welcome to Shifoo's Cafe</h1>
- <p class="text-gray-400">A cozy place for close friends</p>
+ <h1 class="text-4xl font-bold mb-4">{{ AppName }}</h1>
+ <p class="text-gray-400">{{ AppDescription }}</p>
+ <p class="text-sm text-gray-500 mt-4">Request: {{ Request.Method }} {{ Request.Path }}</p>
</div>
</div>
{% endblock %} \ No newline at end of file