Proyectos de Subversion Moodle

Rev

Rev 1 | | Comparar con el anterior | 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_course/activityinstance
19
 
20
    Activity completion selector.
21
 
22
    Example context (json):
23
    {
24
        "activities": [{
25
            "cmid": "4",
26
            "modname": "Test activity",
27
            "icon": "https://raw.githubusercontent.com/moodle/moodle/master/mod/feedback/pix/monologo.svg",
28
            "completionstatus": {
29
                "string": "Manual",
30
                "icon": "https://raw.githubusercontent.com/moodle/moodle/master/pix/i/completion-manual-enabled.png"
31
            }
32
        }]
33
    }
34
}}
35
{{#activities}}
36
<div class="row mb-1">
37
    <div class="activityinstance col-6">
38
        <div class="mod-indent-outer"></div>
1441 ariadna 39
        <div class="d-flex align-items-center align-self-start gap-3 mb-2">
1 efrain 40
            {{#canmanage}}
41
            <label class="accesshide" for="selectactivity_{{cmid}}">{{#str}}select, completion{{/str}} {{modname}}</label>
1441 ariadna 42
            <input type="checkbox" id="selectactivity_{{cmid}}" name="cmid[]" data-section="{{sectionnumber}}" value="{{cmid}}" aria-label="{{#str}}checkactivity, completion, {{{modname}}}{{/str}}">
1 efrain 43
            {{/canmanage}}
1441 ariadna 44
            <a href="{{url}}" class="activityiconcontainer">
45
                {{#activityicon}}
46
                    {{> core_course/activity_icon}}
47
                {{/activityicon}}
48
                {{^activityicon}}
49
                    <img src="{{icon}}" class="activityicon" alt="">
50
                {{/activityicon}}
51
                <span class="instancename">{{{modname}}}</span>
1 efrain 52
            </a>
53
        </div>
54
    </div>
1441 ariadna 55
    <div class="activity-completionstatus col-6 d-flex align-items-start gap-1" id="completionstatus_{{cmid}}">
56
        <div>
1 efrain 57
            {{#completionstatus.icon}}
58
                {{{completionstatus.icon}}}
59
            {{/completionstatus.icon}}
60
            {{^completionstatus.icon}}
1441 ariadna 61
                <span class="me-4">&nbsp;</span>
1 efrain 62
            {{/completionstatus.icon}}
63
        </div>
1441 ariadna 64
        <div>
1 efrain 65
            <span class="text-muted muted">{{{completionstatus.string}}}</span>
66
        </div>
67
    </div>
68
</div>
69
{{/activities}}