summaryrefslogtreecommitdiffstats
path: root/application/modules/user/views/scripts/person/show.phtml
diff options
context:
space:
mode:
authormichael pereira2011-04-12 16:39:18 +0200
committermichael pereira2011-04-12 16:39:18 +0200
commitef0d7eaca3b82c5abf2e06fd94ffcf3a9c749e2b (patch)
treed802c27bbd572dab75cb49fe2307abfba24d70b2 /application/modules/user/views/scripts/person/show.phtml
parentResource controller fix (diff)
parentRechte können nun wieder bei Rollen hinzugefügt und gelöscht werden, alle ... (diff)
downloadpbs2-ef0d7eaca3b82c5abf2e06fd94ffcf3a9c749e2b.tar.gz
pbs2-ef0d7eaca3b82c5abf2e06fd94ffcf3a9c749e2b.tar.xz
pbs2-ef0d7eaca3b82c5abf2e06fd94ffcf3a9c749e2b.zip
Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2
Diffstat (limited to 'application/modules/user/views/scripts/person/show.phtml')
-rw-r--r--application/modules/user/views/scripts/person/show.phtml28
1 files changed, 28 insertions, 0 deletions
diff --git a/application/modules/user/views/scripts/person/show.phtml b/application/modules/user/views/scripts/person/show.phtml
index 5fb4bde..c43bde3 100644
--- a/application/modules/user/views/scripts/person/show.phtml
+++ b/application/modules/user/views/scripts/person/show.phtml
@@ -93,4 +93,32 @@ $class= 'highlight checked';
</div>
<?php endforeach ?></div>
<?php echo $this->pagination;
+if(isset($this->groupRequestList)) {
+ ?>
+<br />
+<h2>Requests:</h2>
+<div class='listelement'><?php
+foreach($this->groupRequestList as $grouprequest) {
+ $grouprequestID = $grouprequest['grouprequestID'];
+ $group = $grouprequest['group'];
+ ?>
+<div class='element'>
+<div class='content'>
+<div class='title'><?php echo $group->getTitle(); ?></div>
+ <?php if($group->getDescription()) {
+ ?>
+<div class='subtitle'><?php echo $group->getDescription(); ?></div>
+ <?php
+ } else {
+ ?>
+<div class='subtitle'>&nbsp;</div>
+ <?php
+ }
+ ?></div>
+</div>
+ <?php
+}
+?></div>
+<?php
+}
?> \ No newline at end of file