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-summary

    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",
                "summary": "This course is about assignments",
                "hasprogress": true,
                "progress": 10,
                "coursecategory": "Miscellaneous",
                "visible": true
            }
        ]
    }
}}
<div class="rui-course-card-deck rui-course-card-deck--2 mt-3">
{{#courses}}
    <div class="rui-course-card rui-progress-{{progress}} {{#showcoursecategory}}rui-course-card--cat{{/showcoursecategory}}" role="listitem"
        data-region="course-content"
        data-course-id="{{{id}}}">

            <div class="rui-course-card-icons">
            {{> core_course/favouriteicon }}
            </div>

            {{> block_myoverview/course-action-menu }}

            <a href="{{viewurl}}" tabindex="-1" title="{{#str}}courseoverviewfiles, moodle{{/str}}">
                <figure class="rui-course-card-img-top" style="background-image: url('{{{courseimage}}}');"></figure>
            </a>

            {{$coursecategory}}
            <div class="rui-course-card-margin d-inline-flex mt-3 align-self-end">
                {{#showcoursecategory}}
                <div class="rui-course-cat-badge">
                    <span class="text-truncate">
                    {{#coursecategory}}
                        {{{coursecategory}}}
                    {{/coursecategory}}
                    </span>
                </div>
                {{/showcoursecategory}}
            </div>
            {{/coursecategory}}

            <div class="rui-course-card-margin d-flex flex-wrap align-self-start mb-1">
                <span class="sr-only">
                    {{#str}}aria:coursecategory, core_course{{/str}}
                </span>

                {{#showshortname}}
                <h5 class="rui-mo-showshortname mt-1 mb-0">
                    <span class="sr-only">
                        {{#str}}aria:courseshortname, core_course{{/str}}
                    </span>
                    <div>{{{shortname}}}</div>
                </h5>
                {{/showshortname}}
            </div>
            <div class="rui-course-card-margin d-flex align-items-start">
                <h4 class="rui-course-card-title mb-1">
                    <a href="{{viewurl}}" class="aalink coursename">
                        <span class="sr-only">
                            {{#str}}aria:coursename, core_course{{/str}}
                        </span>
                        {{{fullname}}}
                    </a>
                </h4>
            </div>
            {{^visible}}
            <div class="rui-course-card-margin d-inline-flex flex-wrap my-2">
                <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 class="rui-course-card-text rui-course-card-margin summary align-self-start">
                <span class="sr-only">{{#str}}aria:coursesummary, block_myoverview{{/str}}</span>
                {{#shortentext}}100, {{{summary}}}{{/shortentext}}
            </div>

            {{#hasprogress}}
            <div class="rui-course-card-progress-bar mt-3 align-self-end">
                {{> block_myoverview/progress-bar}}
            </div>
            {{/hasprogress}}
      
    </div>
{{/courses}}
</div>