summaryrefslogtreecommitdiff
path: root/templates/pages
diff options
context:
space:
mode:
authorBobby <[email protected]>2026-02-11 17:44:40 +0530
committerBobby <[email protected]>2026-02-11 17:44:40 +0530
commit81ba5c7c9bbb175ed8680255e7828cc9703c7596 (patch)
treeba9076bf6a47cbaa5b9bad1583111777718b3523 /templates/pages
parent136e437b1ae1697c688c9a548cd4ae0c5a948419 (diff)
downloadcafe-main.tar.xz
cafe-main.zip
Add icon bar partial template with navigation links and iconsHEADmain
Diffstat (limited to 'templates/pages')
-rw-r--r--templates/pages/main.django22
1 files changed, 12 insertions, 10 deletions
diff --git a/templates/pages/main.django b/templates/pages/main.django
index 6f3994e..20cdd40 100644
--- a/templates/pages/main.django
+++ b/templates/pages/main.django
@@ -2,29 +2,31 @@
{% block content %}
<div class="flex h-screen">
- {% if User %}
- <span class="text-gray-300">👋 {{ User.Username }}</span>
- <a href="{% url "auth.logout" %}"
- class="text-sm bg-red-600 hover:bg-red-700 text-white px-4 py-2 rounded transition-colors">
+ {% include "partials/iconbar.partial.django" %}
+
+
+ {% comment %} {% if User %}
+ <span>👋 {{ User.Username }}</span>
+ <a href="{% url "auth.logout" %}" >
Logout
</a>
{% endif %}
- <h2 class="text-2xl font-bold mb-4 text-white">Welcome to Shifoo's Cafe! ☕</h2>
- <p class="text-gray-400 mb-4">
+ <h2 >Welcome to Shifoo's Cafe! ☕</h2>
+ <p >
You're now authenticated. This is where the main application will be built.
</p>
{% if User %}
- <div class="mt-6 p-4 bg-[#0f3460]/50 rounded border border-[#0f3460]">
- <h3 class="text-lg font-semibold text-white mb-2">Your User Info:</h3>
- <ul class="text-gray-300 space-y-1">
+ <div >
+ <h3 >Your User Info:</h3>
+ <ul >
<li><strong>Username:</strong> {{ User.Username }}</li>
<li><strong>Email:</strong> {{ User.Email }}</li>
<li><strong>Display Name:</strong> {{ User.DisplayName }}</li>
<li><strong>Admin:</strong> {% if User.IsAdmin %}Yes ⭐{% else %}No{% endif %}</li>
</ul>
</div>
- {% endif %}
+ {% endif %} {% endcomment %}
</div>
{% endblock %} \ No newline at end of file