1 |
efrain |
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_group/group_details
|
|
|
19 |
|
|
|
20 |
Template for the Groups page.
|
|
|
21 |
|
|
|
22 |
Classes required for JS:
|
|
|
23 |
* none
|
|
|
24 |
|
|
|
25 |
Data attributes required for JS:
|
|
|
26 |
* none
|
|
|
27 |
|
|
|
28 |
Context variables required for this template:
|
|
|
29 |
* name string Group Name
|
|
|
30 |
* pictureurl string Group image url
|
|
|
31 |
* description string Group description
|
|
|
32 |
* edit string edit link to edit the group
|
|
|
33 |
|
|
|
34 |
Example context (json):
|
|
|
35 |
{
|
|
|
36 |
"name": "Group Name",
|
|
|
37 |
"pictureurl": "https://raw.githubusercontent.com/moodle/moodle/master/pix/g/f1.png",
|
|
|
38 |
"description": "This is the description for Group Name",
|
|
|
39 |
"editurl": "http://www.moodle.org"
|
|
|
40 |
}
|
|
|
41 |
}}
|
|
|
42 |
{{#name}}
|
|
|
43 |
<div class="groupinfobox container-fluid card p-3">
|
|
|
44 |
{{#pictureurl}}
|
|
|
45 |
<div class="group-image"><img class="grouppicture" src="{{{pictureurl}}}" alt="{{{name}}}" title="{{{name}}}"/></div>
|
|
|
46 |
{{/pictureurl}}
|
|
|
47 |
{{#editurl}}
|
|
|
48 |
<div class="group-edit"><a href="{{editurl}}">{{#pix}}t/edit, core, {{#str}}editgroupprofile{{/str}}{{/pix}}</a></div>
|
|
|
49 |
{{/editurl}}
|
|
|
50 |
<h3 class="">{{{name}}}</h3>
|
|
|
51 |
<div class="group-description">{{{description}}}</div>
|
|
|
52 |
</div>
|
|
|
53 |
{{/name}}
|