Skip to content
Snippets Groups Projects
Commit 1a483b24 authored by Torsten Oppermann's avatar Torsten Oppermann
Browse files

[TASK] Some cleanups

parent 67c68895
No related branches found
No related tags found
No related merge requests found
...@@ -102,9 +102,6 @@ class BackendController extends ActionController { ...@@ -102,9 +102,6 @@ class BackendController extends ActionController {
} }
$this->view->assign('locationOptions', $locationOptions); $this->view->assign('locationOptions', $locationOptions);
debug($jobs);
debug($locationOptions);
// if we are not on a root page, display the root pages to the user // if we are not on a root page, display the root pages to the user
if (!$this->rootPageUid) { if (!$this->rootPageUid) {
$this->view->assign('rootOptions', BackendService::getRootOptions()); $this->view->assign('rootOptions', BackendService::getRootOptions());
......
<div class="btn-toolbar" role="toolbar" aria-label="">
<f:for each="{buttons}" as="buttonGroup">
<f:if condition="{buttonGroup -> f:count()} > 1">
<f:then>
<div class="btn-group" role="group" aria-label="">
<f:for each="{buttonGroup}" as="button">
{button -> f:format.raw()}
</f:for>
</div>
</f:then>
<f:else>
{buttonGroup.0 -> f:format.raw()}
</f:else>
</f:if>
</f:for>
</div>
<p>Some content in a p tag</p>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment