MDL-62950 behat: Correct use of nav
[moodle.git] / calendar / templates / footer_options.mustache
blob427919ebdcd496392f27ead1c1558c7ced4a68d8
1 {{!
2     This file is part of Moodle - http://moodle.org/
4     Moodle is free software: you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation, either version 3 of the License, or
7     (at your option) any later version.
9     Moodle is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
14     You should have received a copy of the GNU General Public License
15     along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
17 {{!
18     @template core_calendar/footer_options
20     Displays export options on the calendar footer.
22     Example context (json):
23     {
24         "exportcalendarbutton": "<button class='btn btn-secondary'>Export calendar</button>",
25         "managesubscriptionbutton": "<button class='btn btn-secondary'>Manage subscriptions</button>"
26     }
28 <div class="bottom">
29     {{#exportcalendarbutton}}
30         {{> core/single_button }}
31     {{/exportcalendarbutton}}
32     {{#managesubscriptionbutton}}
33         {{> core/single_button }}
34     {{/managesubscriptionbutton}}
35 </div>