Files
notifications-admin/app/templates/views/organizations/organization/index.html
Beverly Nguyen 69bee58170 adding todo
2025-10-15 16:45:35 -07:00

28 lines
978 B
HTML

{% from "components/page-header.html" import page_header %}
{% extends "withnav_template.html" %}
{% block org_page_title %}
Organization Dashboard
{% endblock %}
{% block maincolumn_content %}
{{ page_header('Organization Dashboard', size='large') }}
<div class="margin-top-5 margin-bottom-5">
<h2 class="font-heading-lg">What is a service?</h2>
<p class="usa-body">
When you join Notify, you're added to a service. This is your organization's workspace for sending text messages and emails. Within your service, you can:
</p>
<ol class="usa-list">
<li>Create and edit message templates</li>
<li>Send messages to recipients</li>
<li>View message status and history</li>
<li>Manage team members and permissions</li>
<li>Track usage and delivery statistics</li>
<li>If you work for multiple organizations, you may belong to multiple services and can switch between them.</li>
</ol>
</div>
{% endblock %}