summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/event
diff options
context:
space:
mode:
authorSebastian Wagner2011-08-02 17:06:59 +0200
committerSebastian Wagner2011-08-02 17:06:59 +0200
commite1ab1cb79068c4c46aa547cefc24da9c83cf1dd0 (patch)
treeddf75a38df4dc78320b74dad9eeef1b493fa049a /application/views/scripts/event
parentactions added to database (diff)
downloadpoolctrl-e1ab1cb79068c4c46aa547cefc24da9c83cf1dd0.tar.gz
poolctrl-e1ab1cb79068c4c46aa547cefc24da9c83cf1dd0.tar.xz
poolctrl-e1ab1cb79068c4c46aa547cefc24da9c83cf1dd0.zip
some database changes, actions in eventform implemented, testevents are now displayed in the calendar
Diffstat (limited to 'application/views/scripts/event')
-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>