Mercurial > hg > rc1
comparison plugins/calendar/skins/classic/templates/eventedit.html @ 3:f6fe4b6ae66a
calendar plugin nearly as distributed
author | Charlie Root |
---|---|
date | Sat, 13 Jan 2018 08:56:12 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
2:c828b0fd4a6e | 3:f6fe4b6ae66a |
---|---|
1 <div id="eventedit" class="uidialog"> | |
2 <form id="eventtabs" action="#" method="post" enctype="multipart/form-data"> | |
3 <ul> | |
4 <li><a href="#event-panel-1"><roundcube:label name="calendar.tabsummary" /></a></li> | |
5 <li id="edit-tab-recurrence"><a href="#event-panel-recurrence"><roundcube:label name="calendar.tabrecurrence" /></a></li> | |
6 <li id="edit-tab-attendees"><a href="#event-panel-attendees"><roundcube:label name="calendar.tabattendees" /></a></li> | |
7 <li id="edit-tab-resources"><a href="#event-panel-resources"><roundcube:label name="calendar.tabresources" /></a></li> | |
8 <li id="edit-tab-attachments"><a href="#event-panel-attachments"><roundcube:label name="calendar.tabattachments" /></a></li> | |
9 </ul> | |
10 <!-- basic info --> | |
11 <div id="event-panel-1"> | |
12 <div class="event-section"> | |
13 <label for="edit-title"><roundcube:label name="calendar.title" /></label> | |
14 <br /> | |
15 <input type="text" class="text" name="title" id="edit-title" size="40" /> | |
16 </div> | |
17 <div class="event-section"> | |
18 <label for="edit-location"><roundcube:label name="calendar.location" /></label> | |
19 <br /> | |
20 <input type="text" class="text" name="location" id="edit-location" size="40" /> | |
21 </div> | |
22 <div class="event-section"> | |
23 <label for="edit-description"><roundcube:label name="calendar.description" /></label> | |
24 <br /> | |
25 <textarea name="description" id="edit-description" class="text" rows="5" cols="40"></textarea> | |
26 </div> | |
27 <div class="event-section"> | |
28 <label for="edit-url"><roundcube:label name="calendar.url" /></label> | |
29 <br /> | |
30 <input type="text" class="text" name="vurl" id="edit-url" size="40" /> | |
31 </div> | |
32 <div class="event-section"> | |
33 <label style="float:right;padding-right:0.5em"><input type="checkbox" name="allday" id="edit-allday" value="1" /><roundcube:label name="calendar.all-day" /></label> | |
34 <label for="edit-startdate"><roundcube:label name="calendar.start" /></label> | |
35 <input type="text" name="startdate" size="11" id="edit-startdate" /> | |
36 <input type="text" name="starttime" size="6" id="edit-starttime" /> | |
37 </div> | |
38 <div class="event-section"> | |
39 <label for="edit-enddate"><roundcube:label name="calendar.end" /></label> | |
40 <input type="text" name="enddate" size="11" id="edit-enddate" /> | |
41 <input type="text" name="endtime" size="6" id="edit-endtime" /> | |
42 </div> | |
43 <div class="event-section" id="edit-alarms"> | |
44 <div class="edit-alarm-item first"> | |
45 <label for="edit-alarm"><roundcube:label name="calendar.alarms" /></label> | |
46 <roundcube:object name="plugin.alarm_select" /> | |
47 <span class="edit-alarm-buttons"> | |
48 <a href="#add" class="iconlink add add-alarm">+</a> | |
49 <a href="#delete" class="iconlink delete delete-alarm">-</a> | |
50 </span> | |
51 </div> | |
52 </div> | |
53 <div class="event-section" id="calendar-select"> | |
54 <label for="edit-calendar"><roundcube:label name="calendar.calendar" /></label> | |
55 <roundcube:object name="plugin.calendar_select" id="edit-calendar" /> | |
56 </div> | |
57 <div class="event-section"> | |
58 <label for="edit-categories"><roundcube:label name="calendar.category" /></label> | |
59 <roundcube:object name="plugin.category_select" id="edit-categories" /> | |
60 </div> | |
61 <div class="event-section"> | |
62 <label for="edit-event-status"><roundcube:label name="calendar.status" /></label> | |
63 <roundcube:object name="plugin.status_select" id="edit-event-status" /> | |
64 </div> | |
65 <div class="event-section"> | |
66 <label for="edit-free-busy"><roundcube:label name="calendar.freebusy" /></label> | |
67 <roundcube:object name="plugin.freebusy_select" id="edit-free-busy" /> | |
68 </div> | |
69 <div class="event-section"> | |
70 <label for="edit-priority"><roundcube:label name="calendar.priority" /></label> | |
71 <roundcube:object name="plugin.priority_select" id="edit-priority" /> | |
72 </div> | |
73 <div class="event-section"> | |
74 <label for="edit-sensitivity"><roundcube:label name="calendar.sensitivity" /></label> | |
75 <roundcube:object name="plugin.sensitivity_select" id="edit-sensitivity" /> | |
76 </div> | |
77 </div> | |
78 <!-- recurrence settings --> | |
79 <div id="event-panel-recurrence"> | |
80 <div class="event-section border-after"> | |
81 <roundcube:object name="plugin.recurrence_form" part="frequency" /> | |
82 </div> | |
83 <div class="recurrence-form border-after" id="recurrence-form-daily"> | |
84 <roundcube:object name="plugin.recurrence_form" part="daily" class="event-section" /> | |
85 </div> | |
86 <div class="recurrence-form border-after" id="recurrence-form-weekly"> | |
87 <roundcube:object name="plugin.recurrence_form" part="weekly" class="event-section" /> | |
88 </div> | |
89 <div class="recurrence-form border-after" id="recurrence-form-monthly"> | |
90 <roundcube:object name="plugin.recurrence_form" part="monthly" class="event-section" /> | |
91 </div> | |
92 <div class="recurrence-form border-after" id="recurrence-form-yearly"> | |
93 <roundcube:object name="plugin.recurrence_form" part="yearly" class="event-section" /> | |
94 </div> | |
95 <div class="recurrence-form" id="recurrence-form-until"> | |
96 <roundcube:object name="plugin.recurrence_form" part="until" class="event-section" /> | |
97 </div> | |
98 <div class="recurrence-form" id="recurrence-form-rdate"> | |
99 <roundcube:object name="plugin.recurrence_form" part="rdate" class="event-section" /> | |
100 </div> | |
101 </div> | |
102 <!-- attendees list --> | |
103 <div id="event-panel-attendees"> | |
104 <roundcube:object name="plugin.attendees_list" id="edit-attendees-table" class="edit-attendees-table" cellspacing="0" cellpadding="0" border="0" /> | |
105 <roundcube:object name="plugin.attendees_form" id="edit-attendees-form" /> | |
106 <roundcube:include file="/templates/freebusylegend.html" /> | |
107 </div> | |
108 <!-- resources list --> | |
109 <div id="event-panel-resources"> | |
110 <roundcube:object name="plugin.attendees_list" id="edit-resources-table" class="edit-attendees-table" cellspacing="0" cellpadding="0" border="0" coltitle="resource" /> | |
111 <roundcube:object name="plugin.resources_form" id="edit-resources-form" /> | |
112 <roundcube:include file="/templates/freebusylegend.html" /> | |
113 </div> | |
114 <!-- attachments list (with upload form) --> | |
115 <div id="event-panel-attachments"> | |
116 <div id="edit-attachments" class="attachments-list"> | |
117 <roundcube:object name="plugin.attachments_list" id="attachmentlist" deleteIcon="/images/icons/delete.png" cancelIcon="/images/icons/delete.png" loadingIcon="/images/display/loading_blue.gif" /> | |
118 </div> | |
119 <div id="edit-attachments-form"> | |
120 <roundcube:object name="plugin.attachments_form" id="calendar-attachment-form" attachmentFieldSize="30" /> | |
121 </div> | |
122 </div> | |
123 </form> | |
124 | |
125 <roundcube:object name="plugin.edit_attendees_notify" id="edit-attendees-notify" class="event-dialog-message" style="display:none" /> | |
126 <roundcube:object name="plugin.edit_recurring_warning" class="event-dialog-message edit-recurring-warning" style="display:none" /> | |
127 <div id="edit-localchanges-warning" class="event-dialog-message" style="display:none"><roundcube:label name="calendar.localchangeswarning" /></div> | |
128 </div> |