{{! 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 comments. You should have received a copy of the GNU General Public License along with Moodle. If not, see . }} {{! @template tool_dataprivacy/data_requests Data requests page. Classes required for JS: * requestactions Data attributes required for JS: * none Context variables required for this template: * requests - Array of data requests. Example context (json): { "requests": [ { "id": 1, "foruser" : { "fullname": "Oscar Olsen", "profileurl": "#" }, "typenameshort" : "Export", "comments": "I would like to download all of my daughter's personal data", "statuslabelclass": "label-default", "statuslabel": "Pending", "timecreated" : 1517902435 }, { "id": 2, "foruser" : { "fullname": "Alexandre Denys", "profileurl": "#" }, "typenameshort" : "Export", "comments": "Please give me all of the information you have about me...", "statuslabelclass": "label-warning", "statuslabel": "Awaiting completion", "timecreated" : 1517902435 }, { "id": 3, "foruser" : { "fullname": "Hirondino Moura", "profileurl": "#" }, "typenameshort" : "Delete", "comments": "Please delete all of my son's personal data.", "statuslabelclass": "label-success", "statuslabel": "Complete", "timecreated" : 1517902435 }, { "id": 4, "foruser" : { "fullname": "Florian Krause", "profileurl": "#" }, "typenameshort" : "Delete", "comments": "I would like to request for my personal data to be deleted from your site. Thanks!", "statuslabelclass": "label-danger", "statuslabel": "Rejected", "timecreated" : 1517902435 }, { "id": 5, "foruser" : { "fullname": "Nicklas Sørensen", "profileurl": "#" }, "typenameshort" : "Export", "comments": "Please let me download my data", "statuslabelclass": "label-info", "statuslabel": "Processing", "timecreated" : 1517902435 } ] } }} {{#httpsite}} {{> core/notification_warning}} {{/httpsite}}
{{#requests}} {{/requests}} {{^requests}} {{/requests}}
{{#str}}requesttype, tool_dataprivacy{{/str}} {{#str}}user, tool_dataprivacy{{/str}} {{#str}}daterequested, tool_dataprivacy{{/str}} {{#str}}requeststatus, tool_dataprivacy{{/str}} {{#str}}message, tool_dataprivacy{{/str}}
{{typenameshort}} {{foruser.fullname}} {{#userdate}} {{timecreated}}, {{#str}} strftimedate {{/str}} {{/userdate}} {{statuslabel}} {{#shortentext}}60, {{comments}}{{/shortentext}} {{#actions}} {{> core/action_menu}} {{/actions}}
{{#str}}nodatarequests, tool_dataprivacy{{/str}}
{{#js}} // Initialise the JS. require(['tool_dataprivacy/requestactions'], function(ActionsMod) { new ActionsMod(); }); {{/js}}