Skip to content
Snippets Groups Projects
Commit e293bda5 authored by Tim van Dijen's avatar Tim van Dijen
Browse files

Fix broken template

parent fe9bbf77
No related branches found
No related tags found
No related merge requests found
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
<h1>{{ pagetitle }}</h1> <h1>{{ pagetitle }}</h1>
{%- if terminated_service %} {%- if terminated_service %}
{%- set SP = terminated_service['name']|translateFromArray|default('the service'|trans)|e %} {%- set SP = terminated_service|entityDisplayName %}
<p>{% trans with { <p>{% trans with {
'%SP%': SP '%SP%': SP
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
<ul class="fa-ul"> <ul class="fa-ul">
{%- for key, sp in remaining_services %} {%- for key, sp in remaining_services %}
{%- set timeout = 5 %} {%- set timeout = 5 %}
{%- set name = sp['metadata']['name']|translateFromArray|default(sp['entityID']) %} {%- set name = sp['metadata']|entityDisplayName %}
{%- set icon = 'circle-o-notch' %} {%- set icon = 'circle-o-notch' %}
{%- if sp['status'] == 'completed' %} {%- if sp['status'] == 'completed' %}
{%- set icon = 'check-circle' %} {%- set icon = 'check-circle' %}
......
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