20 lines
492 B
HTML
20 lines
492 B
HTML
{% 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 %} |