Commit | Line | Data |
---|---|---|
5005d8cf RW |
1 | {{! |
2 | This file is part of Moodle - http://moodle.org/ | |
3 | ||
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. | |
8 | ||
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. | |
13 | ||
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/>. | |
16 | }} | |
17 | {{! | |
18 | @template core_message/message_drawer_view_overview_header | |
19 | ||
20 | This template will render the header for the overview page of the message drawer. | |
21 | ||
22 | Classes required for JS: | |
23 | * none | |
24 | ||
25 | Data attributes required for JS: | |
26 | * All data attributes are required | |
27 | ||
28 | Context variables required for this template: | |
29 | * userid The logged in user id | |
30 | * urls The URLs for the popover | |
31 | ||
32 | Example context (json): | |
33 | {} | |
34 | ||
35 | }} | |
35bd8622 | 36 | <div class="border-bottom p-1 px-sm-2" aria-hidden="false" {{^isdrawer}}data-in-panel="true"{{/isdrawer}} data-region="view-overview"> |
5005d8cf | 37 | <div class="d-flex align-items-center"> |
ae0f81f8 | 38 | <div class="input-group simplesearchform"> |
5005d8cf RW |
39 | <input |
40 | type="text" | |
ae0f81f8 | 41 | class="form-control" |
5005d8cf RW |
42 | placeholder="{{#str}} search, core_search {{/str}}" |
43 | aria-label="{{#str}} search, core_search {{/str}}" | |
44 | data-region="view-overview-search-input" | |
45 | > | |
ae0f81f8 BB |
46 | <div class="input-group-append"> |
47 | <span class="icon-no-margin btn btn-submit"> | |
48 | {{#pix}} a/search, core {{/pix}} | |
49 | </span> | |
50 | </div> | |
5005d8cf RW |
51 | </div> |
52 | <div class="ml-2"> | |
53 | <a | |
54 | href="#" | |
55 | data-route="view-settings" | |
56 | data-route-param="{{loggedinuser.id}}" | |
67855b3b | 57 | aria-label="{{#str}} settings, core_message {{/str}}" |
c0d2558c | 58 | role="button" |
5005d8cf RW |
59 | > |
60 | {{#pix}} t/edit, core {{/pix}} | |
61 | </a> | |
62 | </div> | |
63 | </div> | |
92bc86e4 | 64 | <div class="text-right mt-sm-3"> |
c0d2558c | 65 | <a href="#" data-route="view-contacts" role="button"> |
5005d8cf RW |
66 | {{#pix}} i/user, core {{/pix}} |
67 | {{#str}} contacts, core_message {{/str}} | |
b7d80e94 | 68 | <span class="badge badge-primary bg-primary ml-2 {{^contactrequestcount}}hidden{{/contactrequestcount}}" |
ccd47523 SA |
69 | data-region="contact-request-count" |
70 | aria-label="{{#str}} pendingcontactrequests, core_message, {{contactrequestcount}} {{/str}}"> | |
5005d8cf RW |
71 | {{contactrequestcount}} |
72 | </span> | |
73 | </a> | |
74 | </div> | |
75 | </div> |