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 gradereport_grader/search/resultset

    Wrapping template for returned result items.

    Context variables required for this template:
    * users - Our returned users to render.
    * found - Count of the found users.
    * total - Total count of users within this report.
    * selectall - The created link that allows users to select all of the results.
    * searchterm - The entered text to find these results.
    * hasusers - Allow the handling where no users exist for the returned search term.

    Example context (json):
    {
        "users": [
            {
                "id": 2,
                "fullname": "Foo bar",
                "profileimageurl": "http://foo.bar/pluginfile.php/79/user/icon/monocolor/f1?rev=7630",
                "matchingField": "<span class=\"font-weight-bold\">Foo</span> bar",
                "matchingFieldName": "Fullname",
                "link": "http://foo.bar/grade/report/grader/index.php?id=42&userid=2"
            },
            {
                "id": 3,
                "fullname": "Bar Foo",
                "profileimageurl": "http://foo.bar/pluginfile.php/80/user/icon/monocolor/f1?rev=7631",
                "matchingField": "Bar <span class=\"font-weight-bold\">Foo</span>",
                "matchingFieldName": "Fullname",
                "link": "http://foo.bar/grade/report/grader/index.php?id=42&userid=3"
            }
        ],
        "matches": 20,
        "selectall": "https://foo.bar/grade/report/grader/index.php?id=2&searchvalue=abe",
        "searchterm": "Foo",
        "hasusers": true
    }
}}
<div class="d-flex flex-column mh-100 h-100">
    {{#hasusers}}
        <ul class="searchresultitemscontainer d-flex flex-column mw-100 position-relative list-group h-100 mh-100 m-0 p-0" role="listbox" data-region="search-result-items-container" tabindex="-1">
            {{#users}}
                {{>gradereport_grader/search/resultitem}}
            {{/users}}
            <li class="w-100 result-row p-1 border-top bottom-0 mb-0 position-sticky" role="none" id="result-row-{{id}}">
                <a role="option" class="dropdown-item d-flex small" id="select-all" href="{{{selectall}}}" tabindex="-1">
                    {{#str}}viewallresults, gradereport_grader, {{matches}}{{/str}}
                </a>
            </li>
        </ul>
    {{/hasusers}}
    {{^hasusers}}
        <span class="small d-block px-2 my-2">{{#str}} noresultsfor, core_grades, {{searchterm}}{{/str}}</span>
    {{/hasusers}}
</div>