2021-02-10 16:51:11 +08:00
|
|
|
{{for renderdata}}
|
2021-01-19 22:20:11 +08:00
|
|
|
<div class="schedule-day container">
|
|
|
|
|
<div class="schedule-day-words">
|
2021-02-10 20:50:53 +08:00
|
|
|
<b i18n-name="ccn-i18n-universal-month-{{:month}}"></b>
|
2021-02-10 16:51:11 +08:00
|
|
|
<b>{{>day}}</b>
|
|
|
|
|
<b i18n-name="ccn-i18n-universal-week-{{:dayOfWeek}}"></b>
|
2021-01-19 22:20:11 +08:00
|
|
|
</div>
|
|
|
|
|
<div class="schedule-event-list">
|
2021-02-10 20:50:53 +08:00
|
|
|
{{for events}}
|
2021-02-10 16:51:11 +08:00
|
|
|
{{if isVisible}}
|
2021-03-07 21:01:51 +08:00
|
|
|
<div class="schedule-event-outter card" uuid="{{:uuid}}">
|
2021-03-07 22:15:14 +08:00
|
|
|
<div class="schedule-event-color" style="background: {{:color}};"></div>
|
2021-03-07 21:01:51 +08:00
|
|
|
<div class="schedule-event-inner">
|
|
|
|
|
<div class="schedule-event-words">
|
|
|
|
|
<p class="level-item"><b>{{>title}}</b></p>
|
|
|
|
|
<p class="level-item">{{>description}}</p>
|
|
|
|
|
<p class="level-item"><span>{{>start}}</span>-<span>{{>end}}</span></p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="schedule-event-icon">
|
|
|
|
|
{{if isLocked}}
|
|
|
|
|
<span class="icon is-small"><i class="fas fa-lock"></i></span>
|
|
|
|
|
{{/if}}
|
|
|
|
|
{{if timezoneWarning}}
|
|
|
|
|
<span class="icon is-small"><i class="fas fa-globe"></i></span>
|
|
|
|
|
{{/if}}
|
|
|
|
|
</div>
|
2021-01-19 22:20:11 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2021-02-10 16:51:11 +08:00
|
|
|
{{/if}}
|
|
|
|
|
{{/for}}
|
2021-01-19 22:20:11 +08:00
|
|
|
</div>
|
2021-02-10 16:51:11 +08:00
|
|
|
</div>
|
|
|
|
|
{{/for}}
|