2016-03-22 13:18:06 +00:00
|
|
|
{% from "components/checkbox.html" import checkbox %}
|
|
|
|
|
|
|
|
|
|
<fieldset class="form-group">
|
|
|
|
|
<legend class="form-label">
|
|
|
|
|
Permissions
|
|
|
|
|
</legend>
|
2016-12-19 10:36:17 +00:00
|
|
|
{{ checkbox(form.send_messages) }}
|
|
|
|
|
{{ checkbox(form.manage_service) }}
|
|
|
|
|
{{ checkbox(form.manage_api_keys) }}
|
2016-03-22 13:18:06 +00:00
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<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>
|
2016-12-19 10:36:17 +00:00
|
|
|
</div>
|