Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
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="rui-groupinfobox rounded border my-4 p-4">
44
 
45
    <div class="d-flex justify-content-between">
46
        {{#pictureurl}}
47
            <div class="rui-group-image">
48
                <img class="rui-grouppicture rounded" src="{{{pictureurl}}}" alt="{{{name}}}" title="{{{name}}}"/>
49
            </div>
50
        {{/pictureurl}}
51
        {{#editurl}}
52
            <div class="rui-group-edit"><a href="{{editurl}}" class="d-inline-flex btn btn-secondary btn-icon">{{#pix}}t/edit, core, {{#str}}editgroupprofile{{/str}}{{/pix}}</a></div>
53
        {{/editurl}}
54
    </div>
55
 
56
    <h5 class="rui-group-title mt-3">{{{name}}}</h5>
57
    <div class="rui-group-description">{{{description}}}</div>
58
 
59
</div>
60
{{/name}}