Proyectos de Subversion Moodle

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 1441
Línea 58... Línea 58...
58
    <input type="hidden" name="id" value="{{id}}">
58
    <input type="hidden" name="id" value="{{id}}">
59
    <input type="hidden" name="mode" value="usepreset">
59
    <input type="hidden" name="mode" value="usepreset">
60
    <input type="hidden" name="action" value="select">
60
    <input type="hidden" name="action" value="select">
Línea 61... Línea 61...
61
 
61
 
62
    <fieldset>
62
    <fieldset>
63
        <legend class="sr-only">{{#str}}presets, mod_data{{/str}}</legend>
63
        <legend class="visually-hidden">{{#str}}presets, mod_data{{/str}}</legend>
64
        <table id="presets-list" class="generaltable fullwidth">
64
        <table id="presets-list" class="generaltable fullwidth">
65
            <thead>
65
            <thead>
66
            <tr>
66
            <tr>
67
                <th class="pl-4 border-top-0" scope="col" style="width: 3%">
67
                <th class="ps-4 border-top-0" scope="col" style="width: 3%">
68
                    <span class="sr-only">{{#str}}select{{/str}}</span>
68
                    <span class="visually-hidden">{{#str}}select{{/str}}</span>
69
                </th>
69
                </th>
70
                <th class="pl-4 border-top-0" scope="col" style="width:30%">{{#str}} name {{/str}}</th>
70
                <th class="ps-4 border-top-0" scope="col" style="width:30%">{{#str}} name {{/str}}</th>
71
                <th class="pl-4 border-top-0" scope="col">{{#str}} description {{/str}}</th>
71
                <th class="ps-4 border-top-0" scope="col">{{#str}} description {{/str}}</th>
72
                <th class="pl-4 border-top-0" scope="col" style="width: 3%">
72
                <th class="ps-4 border-top-0" scope="col" style="width: 3%">
73
                    <span class="sr-only">{{#str}}actions{{/str}}</span>
73
                    <span class="visually-hidden">{{#str}}actions{{/str}}</span>
74
                </th>
74
                </th>
75
            </tr>
75
            </tr>
76
            </thead>
76
            </thead>
77
            <tbody>
77
            <tbody>
78
            {{#presets}}
78
            {{#presets}}
79
                <tr>
79
                <tr>
80
                    <td class="p-4 border-right">
80
                    <td class="p-4 border-end">
81
                        <input type="radio" name="fullname" value="{{userid}}/{{shortname}}" data-cmid="{{cmid}}" aria-labelledby="preset-name-{{presetindex}}" >
81
                        <input type="radio" name="fullname" value="{{userid}}/{{shortname}}" data-cmid="{{cmid}}" aria-labelledby="preset-name-{{presetindex}}" >
82
                    </td>
82
                    </td>
83
                    <td class="p-4">
83
                    <td class="p-4">
84
                        <a id="preset-name-{{presetindex}}" href="{{{url}}}">{{fullname}}</a>
84
                        <a id="preset-name-{{presetindex}}" href="{{{url}}}">{{fullname}}</a>
85
                    </td>
85
                    </td>
86
                    <td class="p-4">{{description}}</td>
86
                    <td class="p-4">{{description}}</td>
87
                    <td class="p-4 preset_action_menu">
87
                    <td class="p-4 preset_action_menu">
88
                        {{#actions}}
88
                        {{#actions}}
89
                            <div class="float-right">
89
                            <div class="float-end">
90
                                {{>core/action_menu}}
90
                                {{>core/action_menu}}
91
                            </div>
91
                            </div>
92
                        {{/actions}}
92
                        {{/actions}}
93
                    </td>
93
                    </td>