diff options
| author | Björn Geiger | 2011-03-28 16:51:10 +0200 |
|---|---|---|
| committer | Björn Geiger | 2011-03-28 16:51:10 +0200 |
| commit | 04c69f27f49c3f40888ee4938388413b07ad5e09 (patch) | |
| tree | 4c4300fa8ecfcbab7eb29243dd9bb5d8d4447471 /application/modules/user/views/scripts/group | |
| parent | Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2 (diff) | |
| download | pbs2-04c69f27f49c3f40888ee4938388413b07ad5e09.tar.gz pbs2-04c69f27f49c3f40888ee4938388413b07ad5e09.tar.xz pbs2-04c69f27f49c3f40888ee4938388413b07ad5e09.zip | |
überschriften hinzugefügt, andere Fehler korrigiert
Diffstat (limited to 'application/modules/user/views/scripts/group')
4 files changed, 6 insertions, 6 deletions
diff --git a/application/modules/user/views/scripts/group/add.phtml b/application/modules/user/views/scripts/group/add.phtml index 4f96cf0..588ce31 100644 --- a/application/modules/user/views/scripts/group/add.phtml +++ b/application/modules/user/views/scripts/group/add.phtml @@ -1,3 +1,4 @@ +<h1>Add Group</h1> <?php $this->addForm->setAction($this->url()); echo $this->addForm; diff --git a/application/modules/user/views/scripts/group/edit.phtml b/application/modules/user/views/scripts/group/edit.phtml index d513dea..add3a77 100644 --- a/application/modules/user/views/scripts/group/edit.phtml +++ b/application/modules/user/views/scripts/group/edit.phtml @@ -1,3 +1,4 @@ +<h1>Edit Group</h1> <?php if(isset($this->addForm)) { $this->addForm->setAction('/user/group/add'); diff --git a/application/modules/user/views/scripts/group/link.phtml b/application/modules/user/views/scripts/group/link.phtml index 94ad343..5bb2a9d 100644 --- a/application/modules/user/views/scripts/group/link.phtml +++ b/application/modules/user/views/scripts/group/link.phtml @@ -1,3 +1,4 @@ +<h1>Link Groups</h1> <?php $this->linkForm->setAction($this->url()); echo $this->linkForm; diff --git a/application/modules/user/views/scripts/group/show.phtml b/application/modules/user/views/scripts/group/show.phtml index 18ad1d3..d343204 100644 --- a/application/modules/user/views/scripts/group/show.phtml +++ b/application/modules/user/views/scripts/group/show.phtml @@ -4,12 +4,6 @@ if($this->groupID) { ?> <h1>Group</h1> <?php - } else { - ?> -<h1>Group Details</h1> - <?php - } - if(isset($this->userIDsNamespace['groupID'])) { echo $this->formButton('deletegroup', 'Delete', array( 'onclick' => 'self.location="/user/group/delete/"', 'class' => 'rightbutton')); @@ -17,6 +11,9 @@ if($this->groupID) { 'onclick' => 'self.location="/user/group/edit/"', 'class' => 'rightbutton')); } else { + ?> +<h1>Group Details</h1> + <?php echo $this->formButton('deletegroup', 'Delete', array( 'onclick' => 'self.location="/user/group/delete/groupID/' . $this->group->getID() .'"', 'class' => 'rightbutton')); |
