Skip to content
Snippets Groups Projects
Commit 7a7ca9ee authored by Marko Ivancic's avatar Marko Ivancic
Browse files

WIP

parent c244f81f
No related branches found
No related tags found
1 merge request!6Refactor trackers
Pipeline #80793 passed
This commit is part of merge request !6. Comments created here will be created in the context of that merge request.
...@@ -122,6 +122,7 @@ class Configuration ...@@ -122,6 +122,7 @@ class Configuration
'setupNeeded' => $setupNeeded, 'setupNeeded' => $setupNeeded,
'profilePageUri' => $this->helpersManager->getRoutes() 'profilePageUri' => $this->helpersManager->getRoutes()
->getUrl(Routes::PATH_USER_PERSONAL_DATA), ->getUrl(Routes::PATH_USER_PERSONAL_DATA),
'runSetup' => $runSetup,
]; ];
$template = new Template($this->sspConfiguration, 'accounting:admin/configuration/status.twig'); $template = new Template($this->sspConfiguration, 'accounting:admin/configuration/status.twig');
......
...@@ -10,7 +10,16 @@ ...@@ -10,7 +10,16 @@
<h2>{{ pagetitle }} </h2> <h2>{{ pagetitle }} </h2>
{% if configurationValidationErrors is not null %} {% if configurationValidationErrors is not null %}
<p>There wre some errors. Check your configuration and try again.</p>
<p>{{ configurationValidationErrors }}</p> <p>{{ configurationValidationErrors }}</p>
<br><br>
{% if runSetup %}
<a class="pure-button pure-button-warning" href="?runSetup=1">{{ 'Try again'|trans }}</a>
{% endif %}
{% elseif moduleConfiguration is not null %} {% elseif moduleConfiguration is not null %}
<ul> <ul>
<li> <li>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment