October feature list #226

Merged
tobru merged 36 commits from october into main 2025-10-22 13:43:34 +00:00
Showing only changes of commit 892a19bbcc - Show all commits

View file

@ -222,12 +222,34 @@
</div> </div>
<div class="card-content"> <div class="card-content">
<div class="card-body"> <div class="card-body">
<form method="post" class="form"> <div class="alert alert-light mb-3">
<h6>
<i class="bi bi-info-circle"></i> {% translate "Role Permissions" %}
</h6>
<ul class="mb-0">
<li>
<strong>{% translate "Owner" %}:</strong> {% translate "Can manage all organization settings, members, services, and can appoint administrators." %}
</li>
<li>
<strong>{% translate "Administrator" %}:</strong> {% translate "Can manage members, invite users, and manage all services and instances." %}
</li>
<li>
<strong>{% translate "Member" %}:</strong> {% translate "Can view organization details, create and manage their own service instances." %}
</li>
</ul>
</div>
<form class="form"
hx-post="{{ request.path }}"
hx-target="#pending-invitations-card"
hx-swap="outerHTML"
hx-on::after-request="if(event.detail.successful) this.reset()">
{% csrf_token %} {% csrf_token %}
<input type="hidden" name="fragment" value="pending-invitations-card">
<input type="hidden" name="invite_email" value="1">
<div class="row">{{ invitation_form }}</div> <div class="row">{{ invitation_form }}</div>
<div class="row mt-3"> <div class="row mt-3">
<div class="col-12"> <div class="col-12">
<button type="submit" class="btn btn-primary" name="invite_email" value="1"> <button type="submit" class="btn btn-primary">
<i class="bi bi-send"></i> {% translate "Send Invitation" %} <i class="bi bi-send"></i> {% translate "Send Invitation" %}
</button> </button>
</div> </div>