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_courseformat/local/content/movesection
19
 
20
    Displays the course index.
21
 
22
    Example context (json):
23
    {
24
        "sectionid": 23,
25
        "sectiontitle": "Section title",
26
        "sections": [
27
            {
28
                "title": "General",
29
                "id": 42,
30
                "number": 1,
31
                "sectionurl": "#",
32
                "indexcollapsed": 0
33
            },
34
            {
35
                "title": "City of God or Cidade de Deus",
36
                "id": "43",
37
                "number": "2",
38
                "sectionurl": "#",
39
                "indexcollapsed": 1
40
            }
41
        ]
42
    }
43
 
44
}}
45
{{#information}}
46
<p data-for="sectionname">
47
    {{information}}:
48
</p>
49
{{/information}}
50
<nav class="collapse-list" id="destination-selector" role="tree">
51
    {{#sections}}
52
    <div
53
        class="collapse-list-item"
54
        role="treeitem"
55
    >
56
        <a href="#"
57
            class="collapse-list-link text-truncate"
58
            data-for="section"
59
            data-id="{{id}}"
60
            data-number="{{number}}"
61
        >
62
            {{{title}}}
63
        </a>
64
    </div>
65
    {{/sections}}
66
</nav>