diff --git a/templates/devel/index.html b/templates/devel/index.html
index e738ad22..f0b2c9e7 100644
--- a/templates/devel/index.html
+++ b/templates/devel/index.html
@@ -36,8 +36,8 @@
My Flagged Packages
{% endif %}{% endwith %}
{{ pkg.repo.name }} |
{{ pkg.arch.name }} |
- {{ pkg.flag_date|date }} |
- {{ pkg.last_update|date }} |
+ {{ pkg.flag_date|date:"Y-m-d" }} |
+ {{ pkg.last_update|date:"Y-m-d" }} |
{% empty %}
No flagged packages to display |
@@ -68,7 +68,7 @@ Signoff Status
{{ group.version }} |
{{ group.arch.name }} |
{{ group.target_repo }} |
- {{ group.last_update|date }} |
+ {{ group.last_update|date:"Y-m-d" }} |
{% if group.specification.known_bad %}
Bad |
{% else %}
@@ -138,7 +138,7 @@ Package Todo Lists
{{ todo.name }} |
- {{ todo.created|date }} |
+ {{ todo.created|date:"Y-m-d" }} |
{{ todo.creator.get_full_name }} |
{{ todo.pkg_count }} |
{{ todo.incomplete_count }} |
diff --git a/templates/devel/packages.html b/templates/devel/packages.html
index d55c090d..728f2b43 100644
--- a/templates/devel/packages.html
+++ b/templates/devel/packages.html
@@ -60,9 +60,9 @@ Filter Packages
{% else %}
{{ pkg.full_version }} |
{% endif %}
- {{ pkg.last_update|date }} |
- {{ pkg.build_date|date }} |
- {{ pkg.flag_date|date }} |
+ {{ pkg.last_update|date:"Y-m-d" }} |
+ {{ pkg.build_date|date:"Y-m-d" }} |
+ {{ pkg.flag_date|date:"Y-m-d" }} |
{% for attr in column_attrs %}
{{ pkg|attribute:attr }} |
{% endfor %}
diff --git a/templates/news/list.html b/templates/news/list.html
index da3a4137..8364182a 100644
--- a/templates/news/list.html
+++ b/templates/news/list.html
@@ -33,7 +33,7 @@ Arch Linux News Archives
{% for item in news_list %}
- {{ item.postdate|date }} |
+ {{ item.postdate|date:"Y-m-d" }} |
{{ item.title }} |
{{ item.author.get_full_name }} |
diff --git a/templates/news/view.html b/templates/news/view.html
index 55f8a82e..d4f034d0 100644
--- a/templates/news/view.html
+++ b/templates/news/view.html
@@ -25,7 +25,7 @@ {{ news.title }}
{% endif %}
- {{ news.postdate|date }} - {{ news.author.get_full_name }}
+ {{ news.postdate|date:"Y-m-d" }} - {{ news.author.get_full_name }}
{{ news.html }}
diff --git a/templates/packages/differences.html b/templates/packages/differences.html
index a2444161..bf2ac5a5 100644
--- a/templates/packages/differences.html
+++ b/templates/packages/differences.html
@@ -29,8 +29,8 @@ Multilib Differences to Main Packages
{{ pkg2.full_version }} |
{% pkg_details_link pkg2 %} |
{{ pkg2.repo }} |
- {{ pkg1.last_update|date }} |
- {{ pkg2.last_update|date }} |
+ {{ pkg1.last_update|date:"Y-m-d" }} |
+ {{ pkg2.last_update|date:"Y-m-d" }} |
{% endfor %}
diff --git a/templates/packages/groups.html b/templates/packages/groups.html
index 873acf6a..e6807d79 100644
--- a/templates/packages/groups.html
+++ b/templates/packages/groups.html
@@ -23,7 +23,7 @@ Package Groups Overview{% if arch %} - {{ arch }}{% endif %}
{{ grp.name }} |
{{ grp.count }} |
- {{ grp.last_update|date }} |
+ {{ grp.last_update|date:"Y-m-d" }} |
{% endfor %}
diff --git a/templates/packages/package_details.html b/templates/packages/package_details.html
index 11d20369..ce9b688e 100644
--- a/templates/packages/package_details.html
+++ b/templates/packages/package_details.html
@@ -27,7 +27,7 @@ Package Actions
{% endif %}
{% if pkg.flag_date %}
- Flagged out-of-date on {{ pkg.flag_date|date }}
+ Flagged out-of-date on {{ pkg.flag_date|date:"Y-m-d" }}
{% with tp=pkg.in_testing %}{% if tp %}
Version
Versions Elsewhere
{% endif %}
{% if user.is_authenticated %}{% with flag_request=pkg.flag_request %}{% if flag_request %}
Last Flag Request: |
- From {{ flag_request.who }} on {{ flag_request.created|date }}:
+ | From {{ flag_request.who }} on {{ flag_request.created|date:"Y-m-d" }}:
{{ flag_request.message|linebreaksbr|default:"{no message}" }} |
{% endif %}{% endwith %}{% endif %}
diff --git a/templates/packages/packages_list.html b/templates/packages/packages_list.html
index 16b42849..e0354397 100644
--- a/templates/packages/packages_list.html
+++ b/templates/packages/packages_list.html
@@ -33,8 +33,8 @@ {{ list_title }} - {{ name }} ({{ arch.name }})
{{ pkg.full_version }} |
{% endif %}
{{ pkg.pkgdesc }} |
- {{ pkg.last_update|date }} |
- {{ pkg.flag_date|date }} |
+ {{ pkg.last_update|date:"Y-m-d" }} |
+ {{ pkg.flag_date|date:"Y-m-d" }} |
{% endfor %}
diff --git a/templates/packages/search.html b/templates/packages/search.html
index 009e88c7..e7115157 100644
--- a/templates/packages/search.html
+++ b/templates/packages/search.html
@@ -68,8 +68,8 @@ Package Search
{{ pkg.full_version }} |
{% endif %}
{{ pkg.pkgdesc }} |
- {{ pkg.last_update|date }} |
- {{ pkg.flag_date|date }} |
+ {{ pkg.last_update|date:"Y-m-d" }} |
+ {{ pkg.flag_date|date:"Y-m-d" }} |
{% endfor %}
@@ -115,8 +115,8 @@ Package Search
{{ pkg.full_version }} |
{% endif %}
{{ pkg.pkgdesc }} |
- {{ pkg.last_update|date }} |
- {{ pkg.flag_date|date }} |
+ {{ pkg.last_update|date:"Y-m-d" }} |
+ {{ pkg.flag_date|date:"Y-m-d" }} |
{% empty %}
No matching packages found |
diff --git a/templates/packages/signoffs.html b/templates/packages/signoffs.html
index 2d0a38db..3fa7aafb 100644
--- a/templates/packages/signoffs.html
+++ b/templates/packages/signoffs.html
@@ -56,7 +56,7 @@ Filter Displayed Signoffs
{{ group.target_repo }} |
{{ group.packager|default:"Unknown" }} |
{{ group.packages|length }} |
- {{ group.last_update|date }} |
+ {{ group.last_update|date:"Y-m-d" }} |
{% if group.specification.known_bad %}
Bad |
{% else %}
diff --git a/templates/planet/index.html b/templates/planet/index.html
index 1798da02..579cff1d 100644
--- a/templates/planet/index.html
+++ b/templates/planet/index.html
@@ -24,7 +24,7 @@
- {{ entry.publishdate|date }}
+ {{ entry.publishdate|date:"Y-m-d" }}
{{ entry.summary |safe }}
diff --git a/templates/public/index.html b/templates/public/index.html
index 98d56024..f95ddd40 100644
--- a/templates/public/index.html
+++ b/templates/public/index.html
@@ -50,7 +50,7 @@
- {{ news.postdate|date }}
+ {{ news.postdate|date:"Y-m-d" }}
{% if forloop.counter0 == 0 %}{{ news.html|truncatewords_html:300 }}
{% else %}{{ news.html|truncatewords_html:100 }}{% endif %}
@@ -63,7 +63,7 @@
{% endif %}
- - {{ news.postdate|date }}
+ - {{ news.postdate|date:"Y-m-d" }}
-
{{ news.title }}
diff --git a/templates/releng/release_detail.html b/templates/releng/release_detail.html
index d5275f32..e0e493b6 100644
--- a/templates/releng/release_detail.html
+++ b/templates/releng/release_detail.html
@@ -9,7 +9,7 @@
{{ release.version }}
- - Release Date: {{ release.release_date|date }}
+ - Release Date: {{ release.release_date|date:"Y-m-d" }}
{% if release.kernel_version %}- Kernel Version: {{ release.kernel_version }}
{% endif %}
- Available: {{ release.available|yesno|capfirst }}
{% if release.torrent_data %}
diff --git a/templates/releng/release_list.html b/templates/releng/release_list.html
index 0915ea87..dfe26c4e 100644
--- a/templates/releng/release_list.html
+++ b/templates/releng/release_list.html
@@ -42,7 +42,7 @@ Releases
{% endif %}
- {{ item.release_date|date }} |
+ {{ item.release_date|date:"Y-m-d" }} |
{{ item.version }} |
{{ item.kernel_version|default:"" }} |
{{ item.available|yesno|capfirst }} |
diff --git a/templates/todolists/list.html b/templates/todolists/list.html
index 5938834e..e7c1cf14 100644
--- a/templates/todolists/list.html
+++ b/templates/todolists/list.html
@@ -37,7 +37,7 @@ Package Todo Lists
{{ list.name }} |
- {{ list.created|date }} |
+ {{ list.created|date:"Y-m-d" }} |
{{ list.creator.get_full_name }} |
{{ list.pkg_count }} |
{{ list.incomplete_count }} |
diff --git a/templates/todolists/view.html b/templates/todolists/view.html
index 8a839218..5f57966b 100644
--- a/templates/todolists/view.html
+++ b/templates/todolists/view.html
@@ -23,7 +23,7 @@ {{ list.kind_str | title }} Todo List {{ list.name }}
{% endif %}
- {{ list.created|date }} - {{ list.creator.get_full_name }}
+ {{ list.created|date:"Y-m-d" }} - {{ list.creator.get_full_name }}
{{list.stripped_description|default:'(no description)'|urlize|linebreaks}}