on-demand release 4.5dev+
[moodle.git] / message / templates / message_drawer_view_contacts_body_section_requests_list.mustache
blob0b3493d618304a48966571a95d8c59317ec3385e
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_message/message_drawer_view_contacts_body_section_requests_list
20     This template will render a list of contacts for the message drawer.
22     Classes required for JS:
23     * none
25     Data attributes required for JS:
26     * All data attributes are required
28     Context variables required for this template:
29     * userid The logged in user id
30     * urls The URLs for the popover
32     Example context (json):
33     {}
37 {{#requests}}
38     <a
39         href="#"
40         class="p-2 d-flex list-group-item list-group-item-action border-0 align-items-center"
41         data-route="view-conversation"
42         {{#conversationid}}
43             data-route-param-1="{{.}}"
44         {{/conversationid}}
45         {{^conversationid}}
46             data-route-param-1="false"
47             data-route-param-2="create"
48             data-route-param-3="{{id}}"
49         {{/conversationid}}
50         data-request-id="{{id}}"
51         data-region="contact-request"
52         role="button"
53     >
54         <img
55             class="rounded-circle"
56             src="{{{profileimageurl}}}"
57             alt="{{fullname}}"
58             aria-hidden="true"
59             style="height: 38px"
60         >
61         <div class="w-100 text-truncate ms-2">
62             <div class="d-flex">
63                 <strong class="m-0">
64                     {{fullname}}
65                 </strong>
66             </div>
67             <p class="m-0 font-weight-light text-truncate">
68                 {{#str}} wouldliketocontactyou, core_message {{/str}}
69             </p>
70         </div>
71     </a>
72 {{/requests}}