Proyectos de Subversion Moodle

Rev

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 block_myoverview/view-list

    This template renders the list view for the myoverview block.

    Example context (json):
    {
        "courses": [
            {
                "name": "Assignment due 1",
                "viewurl": "https://moodlesite/course/view.php?id=2",
                "courseimage": "https://moodlesite/pluginfile/123/course/overviewfiles/123.jpg",
                "fullname": "course 3",
                "hasprogress": true,
                "progress": 10,
                "coursecategory": "Category 1",
                "visible": true
            }
        ]
    }
}}

<ul class="list-group mt-2 mx-0">
    {{#courses}}
        <li class="list-group-item rui-course-listitem p-0 rui-progress-{{progress}} {{#showcoursecategory}}rui-course-listitem--cat{{/showcoursecategory}}" data-region="course-content" data-course-id="{{{id}}}">
            <div class="rui-course-list-body">
                <div class="rui-myoverview-action-menu">
                    {{> block_myoverview/course-action-menu }}
                </div>

                <div class="d-flex flex-wrap">
                    <a href="{{viewurl}}" tabindex="-1" title="{{#str}}courseoverviewfiles, moodle{{/str}}">
                        {{> core_course/favouriteicon }}
                        <figure class="rui-course-listitem-img" style="background-image: url('{{{courseimage}}}');"></figure>
                    </a>
                    <div class="d-flex col flex-wrap">
                        <div>
                            {{#showshortname}}
                                <div class="d-block mt-3 mb-1">
                                    <span class="sr-only">
                                        {{#str}}aria:courseshortname, core_course{{/str}}
                                    </span>
                                    <h5>{{{shortname}}}</h5>
                                </div>
                            {{/showshortname}}

                            <h4 class="d-block rui-course-card-title {{^showshortname}}mt-3{{/showshortname}} mb-1">
                                <a href="{{viewurl}}" class="d-inline-flex align-items-center">
                                    <span class="sr-only">
                                        {{#str}}aria:coursename, core_course{{/str}}
                                    </span>
                                    {{{fullname}}}
                                </a>
                            </h4>
                            {{^visible}}
                                <div class="d-inline-flex flex-wrap">
                                    <span class="rui-course-hidden-badge">
                                        <svg class="mr-1" width="16" height="16" fill="none" viewBox="0 0 24 24">
                                            <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18.6247 10C19.0646 10.8986 19.25 11.6745 19.25 12C19.25 13 17.5 18.25 12 18.25C11.2686 18.25 10.6035 18.1572 10 17.9938M7 16.2686C5.36209 14.6693 4.75 12.5914 4.75 12C4.75 11 6.5 5.75 12 5.75C13.7947 5.75 15.1901 6.30902 16.2558 7.09698"></path>
                                            <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19.25 4.75L4.75 19.25"></path>
                                            <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.409 13.591C9.53033 12.7123 9.53033 11.2877 10.409 10.409C11.2877 9.5303 12.7123 9.5303 13.591 10.409"></path>
                                        </svg>
                                        {{#str}} hiddenfromstudents {{/str}}
                                    </span>
                                </div>
                            {{/visible}}
                        </div>

                        {{#showcoursecategory}}
                            <div class="w-100 rui-course-cat-badge mt-2 mb-2">
                                <span class="sr-only">
                                    {{#str}}aria:coursecategory, core_course{{/str}}
                                </span>
                                {{{coursecategory}}}
                            </div>
                        {{/showcoursecategory}}
                        {{#hasprogress}}
                            <div class="rui-course-card-progress-bar p-0 w-100">
                                {{> block_myoverview/progress-bar}}
                            </div>
                        {{/hasprogress}}
                    </div>
                </div>
            </div>

        </li>
    {{/courses}}
</ul>