diff --git a/osinaweb/templates/index.html b/osinaweb/templates/index.html index 46270b8a..191fb4e3 100644 --- a/osinaweb/templates/index.html +++ b/osinaweb/templates/index.html @@ -171,14 +171,14 @@ {% if task.status == 'Open' %}
-

{{task.start_date|date:"d, m, Y" }}

+

{{task.start_date|date:"d-m-Y" }}

{% endif %} {% if task.status == 'Working On' %}
-

{{task.start_date|date:"d, m, Y" }}

+

{{task.start_date|date:"d-m-Y" }}

{% endif %} @@ -186,12 +186,12 @@ {% if task.end_date < current_date %}
-

{{task.end_date|date:"d, m, Y" }}

+

{{task.end_date|date:"d-m-Y" }}

{% else %}
-

{{task.end_date|date:"d, m, Y" }}

+

{{task.end_date|date:"d-m-Y" }}

{% endif %} {% endif %} @@ -200,12 +200,12 @@ {% if task.end_date < current_date %}
-

{{task.end_date|date:"d, m, Y" }}

+

{{task.end_date|date:"d-m-Y" }}

{% else %}
-

{{task.end_date|date:"d, m, Y" }}

+

{{task.end_date|date:"d-m-Y" }}

{% endif %} {% endif %}