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 mod_bigbluebuttonbn/participant_form
19
 
20
    This template renders a row in the participant add form
21
 
22
    Example context (json):
23
    {
24
        "instanceTypeProfiles": [{}],
25
        "select": {},
26
        "participanttype": "student",
27
        "participantvalue": "",
28
        "roles": [],
29
        "canRemove": true
30
    }
31
}}
32
<div class="participant-form">
33
    {{#selectionType}}
34
        {{> mod_bigbluebuttonbn/participant_single_select}}
35
    {{/selectionType}}
36
    {{#selectionParticipant}}
37
        {{> mod_bigbluebuttonbn/participant_single_select}}
38
    {{/selectionParticipant}}
39
    {{#action}}
40
        <button type="submit" class="btn {{#primary}}btn-primary{{/primary}}{{^primary}}btn-secondary{{/primary}}"
41
        id="{{id}}"
42
        title={{#quote}}{{tooltip}}{{/quote}}
43
        {{#disabled}}disabled{{/disabled}}
44
        {{#attributes}} {{name}}={{#quote}}{{value}}{{/quote}} {{/attributes}}>{{label}}</button>
45
    {{/action}}
46
    <table id="participant_list_table" class="generaltable">
47
        <tbody></tbody>
48
    </table>
49
</div>