aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMariano Lopez <mariano.lopez@linux.intel.com>2015-07-09 15:33:33 -0500
committerPaul Eggleton <paul.eggleton@linux.intel.com>2018-05-04 23:57:52 +1200
commit45ba3a280de7a903909fc48e542484fe0c266a8c (patch)
treed0885c26fc04c247376c241378caf55ee1157fc4
parentd25036232cbb8cdfac5eda864a440acd25b4d1f3 (diff)
downloadopenembedded-core-contrib-45ba3a280de7a903909fc48e542484fe0c266a8c.tar.gz
views.py: Changed date format to iso
Changed the day format to iso. Also, the outdated field in the recipes views was changed from days to the date the recipe was last updated. Signed-off-by: Mariano Lopez <mariano.lopez@linux.intel.com> Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
-rw-r--r--rrs/views.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/rrs/views.py b/rrs/views.py
index 7fd2e8f34f..d583acb495 100644
--- a/rrs/views.py
+++ b/rrs/views.py
@@ -207,7 +207,7 @@ def _get_recipe_list(milestone):
recipe_last_updated_dict_all.get(recipe['id'])
if recipe_last_updated:
recipe_date = recipe_last_updated['date']
- outdated = (current_date - recipe_date.date()).days
+ outdated = recipe_date.date().isoformat()
else:
outdated = 'Unknown'
else:
@@ -360,13 +360,14 @@ def _get_recipe_upgrade_detail(recipe_upgrade):
.count() > 0:
is_recipe_maintainer = True
+ commit_date = recipe_upgrade.commit_date.date().isoformat()
commit = recipe_upgrade.sha1[:10]
commit_url = recipe_upgrade.recipe.layerbranch.layer.vcs_web_url + \
'/commit/?id=' + recipe_upgrade.sha1
rud = RecipeUpgradeDetail(recipe_upgrade.title, recipe_upgrade.version, \
- release_name, milestone_name, recipe_upgrade.commit_date, \
- maintainer_name, is_recipe_maintainer, commit, commit_url)
+ release_name, milestone_name, commit_date, maintainer_name, \
+ is_recipe_maintainer, commit, commit_url)
return rud