AutorÃa | Ultima modificación | Ver Log |
{{!
This file is part of Moodle - http://moodle.org/
Moodle is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Moodle is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Moodle. If not, see <http://www.gnu.org/licenses/>.
}}
{{!
@template qbank_managecategories/listitem
This template renders the list item for each category.
@deprecated since Moodle 4.3
@todo Final deprecation on Moodle 4.7 MDL-78090
Example context (json):
{
"questionbankurl": "question/edit.php?cmid=",
"categoryname": "Default for Miscellaneous",
"idnumber": "1",
"questioncount": "1",
"categorydesc": "The default category for questions shared in context Miscellaneous",
"deleteurl": "url",
"deletetitle": "Advanced"
}
}}
<b>
<a title="{{#str}}editquestions, question{{/str}}" href="{{{questionbankurl}}}">
{{{categoryname}}}
{{#idnumber}}
<span class="badge bg-primary text-white">
<span class="accesshide">
{{#str}}idnumber, question{{/str}}
</span>
{{idnumber}}
</span>
{{/idnumber}}
{{questioncount}}
</a>
</b>
{{#categorydesc}}
<div class="text_to_html">
{{{categorydesc}}}
</div>
{{/categorydesc}}
{{#deleteurl}}
<a title="{{deletetitle}}" href="{{{deleteurl}}}">
{{# pix }} t/delete, core, {{deletetitle}} {{/ pix }}
</a>
{{/deleteurl}}