Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Merge pull request #108 from VNG-Realisatie/issue/statusbar-id-over-1000
Browse files Browse the repository at this point in the history
Issue/statusbar id over 1000
  • Loading branch information
alextreme authored Aug 23, 2019
2 parents 7bcf7ee + 402a1f8 commit c9f0876
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{% load i18n %}
{% load l10n %}
{% spaceless %}
<tr>
<td>
<a href="{% url 'server_run:server-run_detail_uuid' server_run.uuid %}">#{{ server_run.id }}</a>
<a href="{% url 'server_run:server-run_detail_uuid' server_run.uuid %}">#{{ server_run.id|unlocalize }}</a>
</td>
<td>
{% if server_run.status == choices.running %}
Expand Down Expand Up @@ -41,7 +42,7 @@
{% endwith %}
</td>
{% if server_run.is_running %}
<td class='starting' server_run_id='{{server_run.id}}'>
<td class='starting' server_run_id='{{server_run.id|unlocalize}}'>
{% else %}
<td>
{% endif %}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{% load subdomainurls %}
{% load l10n %}
{% load i18n %}

{% spaceless %}
{% with session_related.0 as session %}
<tr>
<td>
<a href="{% url 'testsession:session_log' session.uuid %}">#{{ session.id }}</a>
<a href="{% url 'testsession:session_log' session.uuid %}">#{{ session.id|unlocalize }}</a>
</td>
<td>
{% if session.status == choices.running %}
Expand Down Expand Up @@ -44,7 +45,7 @@
</td>

{% if session.is_starting and session.deploy_status %}
<td class='starting' id='test' class='td-20' session_id='{{session.id}}' >
<td class='starting' id='test' class='td-20' session_id='{{session.id|unlocalize}}' >
<div class="progress-group">
<div class="progress-group-header">
<i class="cui-cloud progress-group-icon"></i>
Expand Down

0 comments on commit c9f0876

Please sign in to comment.