{{!
    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.

    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 theme_remui/customizer/menu/menu-item
}}

<div class="menu-item py-2" data-text="{{text}}" data-address="{{address}}">
    <a href="#">{{text}}</a>
    <div class="menu-actions">
        <button type="button" title="{{#str}} customizermenuedit, theme_remui {{/str}}" class="btn action-edit">
            <i class="fa fa-pencil"></i>
        </button>
        <button type="button" title="{{#str}} customizermenumoveup, theme_remui {{/str}}" class="btn action-move-up">
            <i class="fa fa-arrow-up"></i>
        </button>
        <button type="button" title="{{#str}} customizermenuemovedown, theme_remui {{/str}}" class="btn action-move-down">
            <i class="fa fa-arrow-down"></i>
        </button>
        <button type="button" title="{{#str}} customizermenuedelete, theme_remui {{/str}}" class="btn action-delete">
            <i class="fa fa-trash"></i>
        </button>
    </div>
</div>
