diff --git a/tcms/templates/dashboard.html b/tcms/templates/dashboard.html
index 83d5657ce7..0a5bc24cc0 100644
--- a/tcms/templates/dashboard.html
+++ b/tcms/templates/dashboard.html
@@ -11,7 +11,13 @@
{% for test_run in last_15_test_runs %}
- {% include "run/status_progress_patternfly.html" with stats=test_run.stats_executions_status %}
+ {% with test_run.stats_executions_status as stats %}
+ {% blocktrans with amount=stats.CompletedPercentage|floatformat:0 %}{{ amount }}% complete{% endblocktrans %}
+
+ {% endwith %}
|
{{ test_run.summary }}
diff --git a/tcms/templates/run/status_progress_patternfly.html b/tcms/templates/run/status_progress_patternfly.html
deleted file mode 100644
index 84948b8277..0000000000
--- a/tcms/templates/run/status_progress_patternfly.html
+++ /dev/null
@@ -1,7 +0,0 @@
-{% load i18n %}
-
-{% blocktrans with amount=stats.CompletedPercentage|floatformat:0 %}{{ amount }}% complete{% endblocktrans %}
-
|