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/>.
18 @template mod_assign/grading_navigation
20 Actions panel at the bottom of the assignment grading UI.
22 Classes required for JS:
25 Data attributes required for JS:
26 * data-region, data-assignmentid, data-groupid
28 Context variables required for this template:
29 * see mod/assign/classes/output/grading_app.php
31 This template includes ajax functionality, so it cannot be shown in the template library.
34 <div data-region="grading-navigation" class="row-fluid">
37 There are three chunks, which appear side-by-side at large screen sizes.
38 A) Assignment info, which has 3 rows:
41 <div data-region="assignment-info" class="span4">
44 Row 1) course name & link.
46 <a href="{{config.wwwroot}}/course/view.php?id={{courseid}}" title="{{{coursename}}}">{{{coursename}}}</a><br/>
49 Row 2) Assignment name & link.
51 <a href="{{config.wwwroot}}/mod/assign/view.php?id={{cmid}}" title="{{name}}">{{name}}</a>
54 Row 3) Edit settings, due date, with tool-tip thing.
56 <div role="tooltip" id="tooltip-{{uniqid}}" class="accesshide">
58 {{#str}}duedatecolon, mod_assign, {{duedatestr}}{{/str}}
66 <br>{{timeremainingstr}}
72 <a href="{{config.wwwroot}}/course/modedit.php?update={{cmid}}&return=1">{{#pix}}t/edit, core,{{#str}}editsettings{{/str}}{{/pix}}</a>
75 <small data-region="assignment-tooltip" aria-describedby="tooltip-{{uniqid}}">{{#str}}duedatecolon, mod_assign, {{duedatestr}}{{/str}}</small>
81 B) Current user name and info.
83 <div data-region="user-info" class="span4" data-assignmentid="{{assignmentid}}" data-groupid="{{groupid}}">
84 {{> mod_assign/grading_navigation_user_info }}
88 C) User selector widget.
90 <div data-region="user-selector" class="span4">
91 <div class="alignment">
92 {{> mod_assign/grading_navigation_user_selector }}
97 require(['mod_assign/grading_navigation', 'core/tooltip'], function(GradingNavigation, ToolTip) {
98 var nav = new GradingNavigation('[data-region="user-selector"]');
99 var tooltip = new ToolTip('[data-region="assignment-tooltip"]');