Registered user parts (only view)

This commit is contained in:
2019-06-19 13:27:22 +02:00
parent 5743219a1c
commit e89aac01a3
12 changed files with 191 additions and 66 deletions

View File

@@ -40,7 +40,13 @@ abstract class ClubsHelperParts
*/
protected function getViewContent()
{
return $this->getEditContent();
$content = $this->getEditContent();
if(empty($content))
{
return '<i>Kein Wert wurde vergeben</i>';
}
else
return $content;
}
/**