diff options
author | Jayaram Pai | 2013-12-22 23:14:04 +0530 |
---|---|---|
committer | Jayaram Pai | 2013-12-22 23:14:04 +0530 |
commit | 0047ca833ec32ea4b026a4c495fd6b026927cf54 (patch) | |
tree | 124e436393451b02239cbe583c2a921aa0073844 /static | |
parent | 0b3dbfeb9049702b3a1d8c7abd0a0d2bdf7e4067 (diff) | |
download | FOSSEE-Forum-0047ca833ec32ea4b026a4c495fd6b026927cf54.tar.gz FOSSEE-Forum-0047ca833ec32ea4b026a4c495fd6b026927cf54.tar.bz2 FOSSEE-Forum-0047ca833ec32ea4b026a4c495fd6b026927cf54.zip |
changed the date format to y-m-d
Diffstat (limited to 'static')
-rw-r--r-- | static/website/templates/ajax-keyword-search.html | 2 | ||||
-rw-r--r-- | static/website/templates/ajax-time-search.html | 2 | ||||
-rw-r--r-- | static/website/templates/filter.html | 2 | ||||
-rw-r--r-- | static/website/templates/index.html | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/static/website/templates/ajax-keyword-search.html b/static/website/templates/ajax-keyword-search.html index 5ccc236..2426e55 100644 --- a/static/website/templates/ajax-keyword-search.html +++ b/static/website/templates/ajax-keyword-search.html @@ -53,7 +53,7 @@ <td> <span> <i> - {{ question.date_created|date:"y-d-m" }} + {{ question.date_created|date:"y-m-d" }} </i> </span> </td> diff --git a/static/website/templates/ajax-time-search.html b/static/website/templates/ajax-time-search.html index 5ccc236..2426e55 100644 --- a/static/website/templates/ajax-time-search.html +++ b/static/website/templates/ajax-time-search.html @@ -53,7 +53,7 @@ <td> <span> <i> - {{ question.date_created|date:"y-d-m" }} + {{ question.date_created|date:"y-m-d" }} </i> </span> </td> diff --git a/static/website/templates/filter.html b/static/website/templates/filter.html index 7c48cc6..79943c1 100644 --- a/static/website/templates/filter.html +++ b/static/website/templates/filter.html @@ -40,7 +40,7 @@ <span class="meta"> <small> <i> - {{ question.date_created|date:"y-d-m" }}, {{ question.date_created|time }} + {{ question.date_created|date:"y-m-d" }}, {{ question.date_created|time }} </i> </small> diff --git a/static/website/templates/index.html b/static/website/templates/index.html index 34fcf15..ea0b43f 100644 --- a/static/website/templates/index.html +++ b/static/website/templates/index.html @@ -56,7 +56,7 @@ <td> <span> <i> - {{ question.date_created|date:"y-d-m" }} + {{ question.date_created|date:"y-m-d" }} </i> </span> </td> |