18 lines
790 B
HTML
18 lines
790 B
HTML
{% extends "base/layout.html" %}
|
|
{% block content %}
|
|
<h1 class="text-2xl font-semibold">System Settings</h1>
|
|
<p class="text-slate-600 mt-1">Super-admin tools (audit firms, branches, policies).</p>
|
|
|
|
<div class="mt-6 grid grid-cols-1 md:grid-cols-2 gap-4">
|
|
<a href="/system-settings/tenants" class="rounded-2xl bg-white border p-5 hover:shadow-sm">
|
|
<div class="font-semibold">Audit Firms</div>
|
|
<div class="text-sm text-slate-600 mt-1">Create and manage audit firms.</div>
|
|
</a>
|
|
|
|
<a href="/system-settings/branches" class="rounded-2xl bg-white border p-5 hover:shadow-sm">
|
|
<div class="font-semibold">Branches</div>
|
|
<div class="text-sm text-slate-600 mt-1">SMTP, storage, identity, calendar and security policies.</div>
|
|
</a>
|
|
</div>
|
|
{% endblock %}
|