{{!
    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/>.
}}
{{!
    @template core_question/qbank_action_menu

    Question bank tertiary navigtion.

    Classes required for JS:
    * none

    Context variables required for this template:
    * navigation - must always be present.

    Example context (json):
    {
        "navigation": {
            "name": "tertiarynavigation",
            "value": "/question/edit.php?cmid=7",
            "baseid": "select-menu56789",
            "selectedoption": "Questions",
            "options": [
                {
                    "name": "Questions",
                    "value": "/question/edit.php?cmid=7",
                    "id": "select-menu-option1",
                    "selected": true
                },
                {
                    "name": "Categories",
                    "value": "/question/bank/managecategories/category.php?cmid=7",
                    "id": "select-menu-option2",
                    "selected": false
                },
                {
                    "name": "Import",
                    "value": "/question/bank/importquestions/import.php?cmid=7",
                    "id": "select-menu-option3",
                    "selected": false
                },
                {
                    "name": "Export",
                    "value": "/question/bank/exportquestions/export.php?cmid=7",
                    "id": "select-menu-option4",
                    "selected": false
                }
            ]
        },
        "actionbutton": {
            "url": "http://localhost/moodle/question/bank/managecategories/addcategory.php?cmid=71",
            "label": "Add category"
        }
    }
}}
<div class="tertiary-navigation" id="tertiary-navigation">
    <div class="d-flex">
        {{#navigation}}
            <div class="navitem">
                {{>core/tertiary_navigation_selector}}
            </div>
        {{/navigation}}
        {{#actionbutton}}
            <div class="navitem">
                <a class="btn btn-primary ms-2" href="{{url}}">{{label}}</a>
            </div>
        {{/actionbutton}}
    </div>
</div>
