18 lines
398 B
HTML
18 lines
398 B
HTML
{% extends "common/base.html" %}
|
|
{% from "components/header.html" import header %}
|
|
|
|
{% block title %}Settings - DocuPulse{% endblock %}
|
|
|
|
{% block content %}
|
|
{{ header(
|
|
title="Settings",
|
|
description="Manage your docupulse settings",
|
|
button_text="",
|
|
button_url="",
|
|
icon="fa-cog"
|
|
) }}
|
|
|
|
<div class="container-fluid">
|
|
<!-- Settings content will go here -->
|
|
</div>
|
|
{% endblock %} |