{{!
    This file is part of Moodle - http://moodle.org/

    Moodle is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    Moodle is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with Moodle. If not, see
    <http: //www.gnu.org/licenses />.

    Edwiser RemUI
    @package theme_remui
    @copyright (c) 2023 WisdmLabs (https://wisdmlabs.com/)
    @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
}}
{{!
    @template core_message/message_drawer_tab_buttons

    This template is a base template to render a collapsible "section" on the
    overview page of the message drawer, for example the messages section.

    Classes required for JS:
    * none

    Data attributes required for JS:
    * All data attributes are required

    Context variables required for this template:
    * userid The logged in user id
    * urls The URLs for the popover

    Example context (json):
    {}

}}
<div id="{{$region}}{{/region}}-toggle" class=" p-0" data-region="toggle">
    <a class="nav-link w-100 m-0 d-flex pt-0 align-items-center justify-content-center overview-section-toggle {{^expanded}}collapsed{{/expanded}}"
        data-toggle="collapse" data-target="#{{$region}}{{/region}}-target-{{uniqid}}"
        aria-expanded="{{#expanded}}true{{/expanded}}{{^expanded}}false{{/expanded}}"
        aria-controls="{{$region}}{{/region}}-target-{{uniqid}}">

        <span class="">{{$title}}{{/title}}</span>
        <small class="hidden " data-region="section-total-count-container">
            <span aria-hidden="true" class="badge edw-msg-panel-badge" data-region="section-total-count">{{count.total}}</span>{{!
            }}<span class="sr-only">{{#str}} totalconversations, core_message, {{count.total}} {{/str}}</span>
        </small>
        <span class="hidden ml-2" data-region="loading-icon-container">
            {{> core/loading }}
        </span>
        <span class="{{#count.unread}}d-flex{{/count.unread}} {{^count.unread}}hidden{{/count.unread}} badge badge-pill"
            data-region="section-unread-count">
            <span aria-hidden="true">{{count.unread}}</span>
            <span class="sr-only">{{#str}} unreadconversations, core_message, {{count.unread}} {{/str}}</span>
        </span>
    </a>
</div>
