Master instances

This commit is contained in:
2025-06-08 21:54:29 +02:00
parent 53ac07a9ee
commit 7aa96119a9
5 changed files with 49 additions and 9 deletions

View File

@@ -0,0 +1,20 @@
{% extends "common/base.html" %}
{% from "components/header.html" import header %}
{% block title %}Instances - DocuPulse{% endblock %}
{% block content %}
{{ header(
title="Instances",
description="Manage your DocuPulse instances",
button_text="",
button_url="",
icon="fa-server"
) }}
<div class="container mx-auto px-4 py-8">
<div class="text-center">
<p class="text-muted">Instance management will be available soon.</p>
</div>
</div>
{% endblock %}