mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-20 16:13:24 -04:00
22 lines
511 B
HTML
22 lines
511 B
HTML
{% from "components/checkbox.html" import checkbox %}
|
|
|
|
<fieldset class="form-group">
|
|
<legend class="form-label">
|
|
Permissions
|
|
</legend>
|
|
{{ checkbox(form.send_messages) }}
|
|
{{ checkbox(form.manage_service) }}
|
|
{{ checkbox(form.manage_api_keys) }}
|
|
</fieldset>
|
|
|
|
<div class="bottom-gutter">
|
|
<p class="form-label">
|
|
All team members can see
|
|
</p>
|
|
<ul class="list list-bullet">
|
|
<li>templates</li>
|
|
<li>history of sent messages</li>
|
|
<li>who the other team members are</li>
|
|
</ul>
|
|
</div>
|