Files
demo_sites/templates/builder/site_detail.html
2026-05-17 18:29:30 -05:00

48 lines
1.5 KiB
HTML

{% extends "base.html" %}
{% block title %}{{ site.business_name }}{% endblock %}
{% block content %}
<section class="card">
<h1>{{ site.business_name }}</h1>
<p>Status: <strong>{{ site.status }}</strong></p>
<p>Template: {{ site.template_option.name }}</p>
{% if site.template_option.description %}
<p>{{ site.template_option.description }}</p>
{% endif %}
<p class="hint">Source: <code>{{ site.template_option.source_folder }}</code></p>
<p>Address: {{ site.business_address }}</p>
<p>Phone: {{ site.business_phone }}</p>
{% if site.old_website %}
<p>Old website: <a href="{{ site.old_website }}" target="_blank" rel="noreferrer">{{ site.old_website }}</a></p>
{% endif %}
</section>
<section class="card">
<h2>Downloads</h2>
{% if site.basic_zip_path %}
<a class="button" href="/dashboard/sites/{{ site.id }}/download/basic/">Download basic HTML site</a>
{% else %}
<p>Basic site not ready yet.</p>
{% endif %}
{% if site.django_zip_path %}
<a class="button muted" href="/dashboard/sites/{{ site.id }}/download/django/">Download Django demo site</a>
{% else %}
<p>Django demo not ready yet.</p>
{% endif %}
</section>
{% if site.ai_payload %}
<section class="card">
<h2>AI content preview</h2>
<p><strong>{{ site.ai_payload.hero_headline }}</strong></p>
<p>{{ site.ai_payload.hero_subheadline }}</p>
</section>
{% endif %}
{% if site.last_error %}
<section class="card danger">
<h2>Generation error</h2>
<pre>{{ site.last_error }}</pre>
</section>
{% endif %}
{% endblock %}