diff --git a/templates/screen.html b/templates/screen.html
index 0f6b98c..ad80571 100644
--- a/templates/screen.html
+++ b/templates/screen.html
@@ -56,10 +56,19 @@
{{ airport["name"] }} Airport Depar
{% else %}
{% endif %}
-
{% if flight[i]["status"] != "Scheduled" %}
- {{ flight[i]["status"] }}
+ {% if flight[i]["cancelled"] %}
+ |
+ {{ flight[i]["status"] }}
+ {% elif flight[i]["blocked"] %}
+ |
+ {{ flight[i]["status"] }}
+ {% else %}
+ |
+ {{ flight[i]["status"] }}
+ {% endif %}
{% else %}
+ |
{% endif %}
|