summaryrefslogtreecommitdiffstats
path: root/application/views
diff options
context:
space:
mode:
Diffstat (limited to 'application/views')
-rw-r--r--application/views/scripts/event/index.phtml7
1 files changed, 5 insertions, 2 deletions
diff --git a/application/views/scripts/event/index.phtml b/application/views/scripts/event/index.phtml
index 33a93e9..cb591fe 100644
--- a/application/views/scripts/event/index.phtml
+++ b/application/views/scripts/event/index.phtml
@@ -62,7 +62,7 @@ $(document).ready(function() {iniCalendar();});
header: {
left: 'title',
center: 'prev,next today',
- right: 'month,agendaWeek,agendaDay'
+ right: 'agendaWeek,agendaDay'
},
editable: true,
// disableDragging: false,
@@ -70,7 +70,7 @@ $(document).ready(function() {iniCalendar();});
selectable: true,
selectHelper: true,
- events: "calendarEvents.php",
+ events: "/event/list",
dayClick: function(date, allDay, jsEvent, view) {
self.location="/event/add/";
@@ -133,6 +133,9 @@ if(count($this->eventlist)>0) {
<?php
}
?>
+ <div class='details'><label>Action:</label>
+ <div class='item'><?php echo $event['action']; ?>&nbsp;</div>
+ </div>
<div class='details'><label>Start Time:</label>
<div class='item'><?php echo date ('d F Y - H:i', strtotime($event['start'])); ?>&nbsp;</div>
</div>