Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 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_question/switch_question_bank
19
 
20
    Example context (json):
21
{
22
    "quizname": "Quiz 1",
23
    "quizcmid": 1,
24
    "quizcontextid": 1,
25
    "hascoursesharedbanks": true,
26
    "coursesharedbanks": [
27
        {
28
            "name": "Question bank 1",
29
            "modid": "2",
30
            "contextid": 2,
31
            "coursenamebankname": "c1 - Question bank 1",
32
            "cminfo": {},
33
            "questioncategories": []
34
        },
35
        {
36
            "name": "Question bank 2",
37
            "modid": "3",
38
            "contextid": 3,
39
            "coursenamebankname": "c1 - Question bank 2",
40
            "cminfo": {},
41
            "questioncategories": []
42
        }
43
    ],
44
    "hasrecentlyviewedbanks": true,
45
    "recentlyviewedbanks": [
46
        {
47
            "name": "Question bank 3",
48
            "modid": "4",
49
            "contextid": 4,
50
            "coursenamebankname": "c2 - Question bank 4",
51
            "cminfo": {},
52
            "questioncategories": []
53
        },
54
        {
55
            "name": "Question bank 4",
56
            "modid": "6",
57
            "contextid": 6,
58
            "coursenamebankname": "c3 - Question bank 5",
59
            "cminfo": {},
60
            "questioncategories": []
61
        }
62
    ],
63
    "hassharedbanks": true,
64
    "sharedbanks": [
65
        {
66
            "name": "Question bank 1",
67
            "modid": "2",
68
            "contextid": 2,
69
            "coursenamebankname": "c1 - Question bank 1",
70
            "cminfo": {},
71
            "questioncategories": []
72
        },
73
        {
74
            "name": "Question bank 2",
75
            "modid": "3",
76
            "contextid": 3,
77
            "coursenamebankname": "c1 - Question bank 2",
78
            "cminfo": {},
79
            "questioncategories": []
80
        },
81
        {
82
            "name": "Question bank 3",
83
            "modid": "4",
84
            "contextid": 4,
85
            "coursenamebankname": "c2 - Question bank 4",
86
            "cminfo": {},
87
            "questioncategories": []
88
        },
89
        {
90
            "name": "Question bank 4",
91
            "modid": "6",
92
            "contextid": 6,
93
            "coursenamebankname": "c3 - Question bank 5",
94
            "cminfo": {},
95
            "questioncategories": []
96
        }
97
    ]
98
}
99
}}
100
<div class="quiz-bank">
101
    <h5>{{#str}}quizquestionbank, core_question{{/str}}</h5>
102
    <a href="#" class="ms-3" data-newmodid="{{quizcmid}}">{{quizname}}</a>
103
</div>
104
 
105
<hr class="w-75">
106
 
107
{{#hascoursesharedbanks}}
108
    <div class="course-shared-banks">
109
        <h5>{{#str}}banksincourse, core_question{{/str}}</h5>
110
        {{#coursesharedbanks}}
111
            <ul class="list-unstyled ms-3">
112
                <li>
113
                    <a href="#" data-newmodid="{{modid}}">{{name}}</a>
114
                </li>
115
            </ul>
116
        {{/coursesharedbanks}}
117
    </div>
118
    <hr class="w-75">
119
{{/hascoursesharedbanks}}
120
 
121
{{#hasrecentlyviewedbanks}}
122
    <div class="recently-viewed-banks">
123
        <h5>{{#str}}recentlyviewedquestionbanks, core_question{{/str}}</h5>
124
        {{#recentlyviewedbanks}}
125
            <ul class="list-unstyled ms-3">
126
                <li>
127
                    <a href="#" data-newmodid="{{modid}}">{{coursenamebankname}}</a>
128
                </li>
129
            </ul>
130
        {{/recentlyviewedbanks}}
131
    </div>
132
    <hr class="w-75">
133
{{/hasrecentlyviewedbanks}}
134
 
135
 
136
<div class="search-banks">
137
    <h5>{{#str}}otherquestionbank, core_question{{/str}}</h5>
138
    <select class="form-select" id="searchbanks" data-contextid="{{quizcontextid}}">
139
    </select>
140
</div>