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/recordings_session
19
 
20
    This template renders the mobile page.
21
 
22
    Example context (json):
23
    {
24
        "bbbid" : 3,
25
        "has_records": true,
26
        "search_input": {},
27
        "import_button": {
28
            "method" : "get",
29
            "url" : "#",
30
            "primary" : 1,
31
            "tooltip" : "This is a tooltip",
32
            "label" : "This is a the button text",
33
            "id": "thisismybutton",
34
            "attributes": [{
35
                "name": "data-attribute",
36
                "value": "yeah"
37
            }]
38
        }
39
    }
40
}}
41
 
42
<div class="mod_bigbluebuttonbn_recordings_section">
43
    {{< mod_bigbluebuttonbn/recordings_table}}
44
        {{$title}}{{#str}}view_section_title_recordings, mod_bigbluebuttonbn{{/str}}{{/title}}
45
    {{/mod_bigbluebuttonbn/recordings_table}}
46
    <div class="mt-3">
47
        {{#import_button}}
48
            {{>core/single_button}}
49
        {{/import_button}}
50
    </div>
51
</div>