Compare commits

...

4 Commits

Author SHA1 Message Date
Flatlogic Bot
5274a08e89 Auto commit: 2025-10-30T20:56:35.653Z 2025-10-30 20:56:35 +00:00
Flatlogic Bot
ae8db768c7 Revert to version 87b7f51 2025-10-30 04:27:53 +00:00
Flatlogic Bot
5a93bf75d2 Revert to version cd996ba 2025-10-30 04:27:21 +00:00
Flatlogic Bot
87b7f51650 Firstmvp 2025-10-29 22:39:24 +00:00
17 changed files with 28 additions and 7 deletions

11
core/templates/base.html Normal file
View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{% block title %}Knowledge Base{% endblock %}</title>
{% block head %}{% endblock %}
</head>
<body>
{% block content %}{% endblock %}
</body>
</html>

View File

@ -0,0 +1,14 @@
{% extends 'base.html' %}
{% block title %}{{ article.title }}{% endblock %}
{% block content %}
<div class="container mt-5">
<h1>{{ article.title }}</h1>
<p class="text-muted">Published on {{ article.created_at|date:"F d, Y" }}</p>
<hr>
<div>
{{ article.content|safe }}
</div>
</div>
{% endblock %}

View File

@ -137,12 +137,8 @@
<body>
<main>
<div class="card">
<h1>Analyzing your requirements and generating your website…</h1>
<div class="loader" role="status" aria-live="polite" aria-label="Applying initial changes">
<span class="sr-only">Loading…</span>
</div>
<p>Appwizzy AI is collecting your requirements and applying the first changes.</p>
<p>This page will refresh automatically as the plan is implemented.</p>
<h1>{{ project_name }}</h1>
<p>Where Ancient Metallurgy Meets Modern Commerce</p>
<p>
Runtime: Django <code>{{ django_version }}</code> · Python <code>{{ python_version }}</code>
UTC <code>{{ current_time|date:"Y-m-d H:i:s" }}</code>

View File

@ -18,7 +18,7 @@ def home(request):
now = timezone.now()
context = {
"project_name": "New Style",
"project_name": "BrassRoute",
"agent_brand": agent_brand,
"django_version": django_version(),
"python_version": platform.python_version(),