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 unilabeltype_courseteaser/grid
19
    Template to show a bootstrap modal dialog.
20
 
21
    Example context (json):
22
    {
23
        "showintro": false,
24
        "intro": "",
25
        "height": 300,
26
        "items": [
27
            {
28
                "courseid": "3",
29
                "courseurl": "https://example.com/course/view.php?id=3",
30
                "title": "TEST copy 1",
31
                "nr": 0,
32
                "first": true
33
            },
34
            {
35
                "courseid": "2",
36
                "courseurl": "https://example.com/course/view.php?id=2",
37
                "title": "TEST",
38
                "nr": 1
39
            }
40
        ],
41
        "hasitems": true,
42
        "cmid": "55"
43
    }
44
}}
45
 
46
{{#showintro}}
47
    {{{intro}}}
48
{{/showintro}}
49
{{#hasitems}}
50
    <div class="row mx-0">
51
        {{#items}}
52
            <div class="text-center {{{colclasses}}}">
53
                <!-- The overlay is used as button to show the modal dialog -->
54
                <a href="{{{courseurl}}}">
55
                    <div class="unilabel-overlay-effect bg-primary h-100 w-100"></div>
56
                </a>
57
                <h3>{{title}}</h3>
58
                {{#imageurl}}
59
                    <div style="width:100%;">
60
                        <img class="img-fluid mh-100 mb-3" src="{{{imageurl}}}" style="object-fit:contain;"/>
61
                    </div>
62
                {{/imageurl}}
63
            </div>
64
        {{/items}}
65
    </div>
66
{{/hasitems}}
67
 
68
{{^hasitems}}
69
    <span>{{#str}} nocontent , unilabeltype_courseteaser {{/str}}</span>
70
{{/hasitems}}