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 tiny_accessibilitychecker/warning_content
19
 
20
    Display a content warning message
21
 
22
    Example context (json):
23
    {
24
        "warnings": [
25
            {
26
                "description": "This is a warning message",
27
                "nodeData": [{
28
                    "text": "Text of content",
29
                    "src": "https://example.com/image.png",
30
                    "nodeName": "IMG",
31
                    "nodeIndex": 0
32
                }]
33
            }
34
        ]
35
    }
36
}}
37
<div class="warning-desc">
38
    {{#warnings}}
39
            <p>{{{description}}}</p>
40
            <ol class="accessibilitywarnings">
41
                {{#nodeData}}
42
                    <li>
43
                        {{#text}}
44
                            {{text}}
45
                        {{/text}}
46
                        {{#src}}
47
                            <img alt="" src="{{src}}" width="100"/>
48
                        {{/src}}
49
                        - <a href="#" data-action="highlightfault" data-node-name="{{nodeName}}" data-node-index="{{nodeIndex}}">{{#str}} viewissue, tiny_accessibilitychecker {{/str}}</a>
50
                    </li>
51
                {{/nodeData}}
52
            </ol>
53
    {{/warnings}}
54
    {{^warnings}}
55
        <p>{{#str}} nowarnings, tiny_accessibilitychecker {{/str}}</p>
56
    {{/warnings}}
57
</div>