summaryrefslogtreecommitdiff
path: root/protected/views/myVeranstaltung/admin.php
diff options
context:
space:
mode:
authorTristan Zur <tzur@ccwn.org>2012-05-15 21:34:54 +0200
committerTristan Zur <tzur@ccwn.org>2012-05-15 21:34:54 +0200
commit1c57e4d02c914cb83d13ef919179f9cb73b5fbbe (patch)
tree2d987f9905432d5fecd918591c581365276c0f85 /protected/views/myVeranstaltung/admin.php
parent94bb97f7b574ad8557d568a2ef1288dae3b4e9c8 (diff)
- Initiale Verein-Veranstaltungsverwaltung
- components/Html ergänzt für Anzeige der Einheiten-Dropdown Box - Logo-Upload für Admins - AngebotVerein mit Autocomplete und "Einheiten-Tausch"
Diffstat (limited to 'protected/views/myVeranstaltung/admin.php')
-rw-r--r--protected/views/myVeranstaltung/admin.php59
1 files changed, 59 insertions, 0 deletions
diff --git a/protected/views/myVeranstaltung/admin.php b/protected/views/myVeranstaltung/admin.php
new file mode 100644
index 0000000..6e2a1a3
--- /dev/null
+++ b/protected/views/myVeranstaltung/admin.php
@@ -0,0 +1,59 @@
+<?php
+$this->breadcrumbs=array(
+ 'Veranstaltungs'=>array('index'),
+ 'Manage',
+);
+
+$this->menu=array(
+ array('label'=>'List Veranstaltung', 'url'=>array('index')),
+ array('label'=>'Create Veranstaltung', 'url'=>array('create')),
+);
+
+Yii::app()->clientScript->registerScript('search', "
+$('.search-button').click(function(){
+ $('.search-form').toggle();
+ return false;
+});
+$('.search-form form').submit(function(){
+ $.fn.yiiGridView.update('veranstaltung-grid', {
+ data: $(this).serialize()
+ });
+ return false;
+});
+");
+?>
+
+<h1>Manage Veranstaltungs</h1>
+
+<p>
+You may optionally enter a comparison operator (<b>&lt;</b>, <b>&lt;=</b>, <b>&gt;</b>, <b>&gt;=</b>, <b>&lt;&gt;</b>
+or <b>=</b>) at the beginning of each of your search values to specify how the comparison should be done.
+</p>
+
+<?php echo CHtml::link('Advanced Search','#',array('class'=>'search-button')); ?>
+<div class="search-form" style="display:none">
+<?php $this->renderPartial('_search',array(
+ 'model'=>$model,
+)); ?>
+</div><!-- search-form -->
+
+<?php $this->widget('zii.widgets.grid.CGridView', array(
+ 'id'=>'veranstaltung-grid',
+ 'dataProvider'=>$model->search(),
+ 'filter'=>$model,
+ 'columns'=>array(
+ 'id',
+ 'verein_id',
+ 'titel',
+ 'startzeit',
+ 'endzeit',
+ 'beschreibung',
+ /*
+ 'standort_id',
+ 'published',
+ */
+ array(
+ 'class'=>'CButtonColumn',
+ ),
+ ),
+)); ?>