{% extends "base.html" %} {% block title %}Admin Dashboard — T & S Contractors Ltd{% endblock %} {% block description %}Manage portfolio projects.{% endblock %} {% block content %}

Admin Dashboard

Signed in as {{ admin_email }}. Log out

Add New Project

{% if error is defined %}
{{ error }}
{% endif %}
JPG, PNG, WEBP or GIF.
One YouTube URL per line.
Hold Ctrl / Cmd to select multiple images.

Existing Projects ({{ projects|length }})

{% if not projects %}

No projects yet. Add one above.

{% else %}
{% for p in projects %} {% endfor %}
Image Name Location Status Budget Featured Action
{% if p.image %} {{ p.name }} {% else %} No image {% endif %} {{ p.name }} {{ p.location }} {{ p.status|capitalize }} {{ p.budget or '-' }} {{ 'Yes' if p.is_featured else 'No' }} Edit View
{% for p in projects %}
{% if p.image %} {% endif %}

{{ p.name }}

{{ p.location }} · {{ p.status|capitalize }}
Budget: {{ p.budget or '-' }} · Featured: {{ 'Yes' if p.is_featured else 'No' }}
Edit View
{% endfor %}
{% endif %}
{% endblock %}