forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MDL-59936 calendar: use icons in event summary modal
- Loading branch information
1 parent
368832d
commit 4febb36
Showing
8 changed files
with
155 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
93 changes: 93 additions & 0 deletions
93
theme/bootstrapbase/templates/core_calendar/event_summary_body.mustache
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
{{! | ||
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 core_calendar/event_summary_body | ||
This template renders the body of calendar events summary modal. | ||
Example context (json): | ||
{ | ||
"timestart": 1490320388, | ||
"description": "An random event description", | ||
"eventtype": "User", | ||
"source": "Ical imported", | ||
"groupname": "Group 1" | ||
} | ||
}} | ||
<div{{! | ||
}} data-region="summary-modal-container"{{! | ||
}} data-event-id="{{id}}"{{! | ||
}} data-event-title="{{name}}"{{! | ||
}} data-event-count="{{eventcount}}"{{! | ||
}} data-event-="{{repeatid}}"{{! | ||
}} data-action-event="{{isactionevent}}"{{! | ||
}} data-edit-url="{{editurl}}"{{! | ||
}}> | ||
<div class="container-fluid"> | ||
<div class="row-fluid"> | ||
<div class="span1">{{#pix}} i/calendareventtime, core, {{#str}} when, core_calendar {{/str}} {{/pix}}</div> | ||
<div class="span11">{{#userdate}} {{timestart}}, {{#str}} strftimerecentfull {{/str}} {{/userdate}}</div> | ||
</div> | ||
<div class="row-fluid m-t-1"> | ||
<div class="span1">{{#pix}} i/calendar, core, {{#str}} eventtype, core_calendar {{/str}} {{/pix}}</div> | ||
<div class="span11">{{eventtype}}</div> | ||
</div> | ||
{{#description}} | ||
<div class="row-fluid m-t-1"> | ||
<div class="span1">{{#pix}} i/calendareventdescription, core, {{#str}} description {{/str}} {{/pix}}</div> | ||
<div class="span11">{{{.}}}</div> | ||
</div> | ||
{{/description}} | ||
{{#iscategoryevent}} | ||
<div class="row-fluid m-t-1"> | ||
<div class="span1">{{#pix}} i/categoryevent, core, {{#str}} category {{/str}} {{/pix}}</div> | ||
<div class="span11">{{{category.nestedname}}}</div> | ||
</div> | ||
{{/iscategoryevent}} | ||
{{#iscourseevent}} | ||
<div class="row-fluid m-t-1"> | ||
<div class="span1">{{#pix}} i/courseevent, core, {{#str}} course {{/str}} {{/pix}}</div> | ||
<div class="span11"><a href="{{url}}">{{{course.fullname}}}</a></div> | ||
</div> | ||
{{/iscourseevent}} | ||
{{#groupname}} | ||
<div class="row-fluid m-t-1"> | ||
<div class="span1">{{#pix}} i/courseevent, core, {{#str}} course {{/str}} {{/pix}}</div> | ||
<div class="span11"><a href="{{url}}">{{{course.fullname}}}</a></div> | ||
</div> | ||
<div class="row-fluid m-t-1"> | ||
<div class="span1">{{#pix}} i/groupevent, core, {{#str}} group {{/str}} {{/pix}}</div> | ||
<div class="span11">{{{groupname}}}</div> | ||
</div> | ||
{{/groupname}} | ||
{{#subscription}} | ||
{{#displayeventsource}} | ||
<div class="row-fluid m-t-1"> | ||
<div class="span1">{{#pix}} i/rss, core, {{#str}} eventsource, core_calendar {{/str}} {{/pix}}</div> | ||
<div class="span11"> | ||
{{#url}} | ||
<a href="{{url}}">{{#str}}subscriptionsource, core_calendar, {{name}}{{/str}}</a> | ||
{{/url}} | ||
{{^url}} | ||
<p>{{#str}}subscriptionsource, core_calendar, {{name}}{{/str}}</p> | ||
{{/url}} | ||
</div> | ||
</div> | ||
{{/displayeventsource}} | ||
{{/subscription}} | ||
</div> | ||
</div> |