]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/frio/templates/event_form.tpl
frio: add intro action buttons for mobile devices
[friendica.git] / view / theme / frio / templates / event_form.tpl
index 6ccce703b2b527ba18d8b9c6f20198fa154c9b97..97892d186b6383f89e957e8a8bfacea423099589 100644 (file)
                <input type="hidden" name="uri" value="{{$uri}}" />
                <input type="hidden" name="preview" id="event-edit-preview" value="0" />
 
+               {{* The tab conten with the necessary basic settings *}}
                <div id="event-edit-wrapper">
 
+                       {{* The event title *}}
                        {{include file="field_input.tpl" field=$summary}}
 
                        <div id="event-edit-time">
+                               {{* The field for event starting time *}}
                                {{$s_dsel}}
 
+                               {{* The field for event finish time *}}
                                {{$f_dsel}}
 
+                               {{* checkbox if the the event doesn't have a finish time *}}
                                {{include file="field_checkbox.tpl" field=$nofinish}}
 
+                               {{* checkbox for adjusting the event time to the timezone of the user *}}
                                {{include file="field_checkbox.tpl" field=$adjust}}
                        </div>
 
+                       {{* checkbox to enable event sharing and the permissions tab *}}
                        {{if ! $eid}}
                        {{include file="field_checkbox.tpl" field=$share}}
                        {{/if}}
 
+                       {{* The submit button - saves the event *}}
                        <div class="pull-right" >
                                <button id="event-submit" type="submit" name="submit" class="btn btn-primary" value="{{$submit|escape:'html'}}">{{$submit}}</button>
                        </div>
                        <div class="clear"></div>
                </div>
 
+               {{* The advanced tab *}}
                <div id="event-desc-wrapper" style="display: none">
 
+                       {{* The textarea for the event description *}}
                        <div class="form-group">
                                <div id="event-desc-text"><b>{{$d_text}}</b></div>
                                <textarea id="comment-edit-text-desc" class="form-control" name="desc" >{{$d_orig}}</textarea>
                                <div class="clear"></div>
                        </div>
 
+                       {{* The textarea for the event location *}}
                        <div class="form-group">
                                <div id="event-location-text"><b>{{$l_text}}</b></div>
                                <textarea id="comment-edit-text-loc" class="form-control" name="location">{{$l_orig}}</textarea>
                        </div>
                </div>
 
+               {{* The tab for the permissions (if event sharing is enabled) *}}
                <div id="event-acl-wrapper" style="display: none">
                        {{$acl}}
                </div>
 
+               {{* The tab for the event preview (content is inserted by js) *}}
                <div id="event-preview" style="display: none"></div>
 
                <div class="clear"></div>