From b70e3866f9cf5eeb0d4338d442cc0d3f9fec4139 Mon Sep 17 00:00:00 2001 From: Diane Trout Date: Thu, 17 Feb 2011 15:38:19 -0800 Subject: [PATCH] Only use one name for dates on the page. Also the django database uses a date field for creation date and wont let you format it to an isoformatted timestamp so I hacked in the time portion into the RDFa field. --- htsworkflow/frontend/templates/samples/library_detail.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htsworkflow/frontend/templates/samples/library_detail.html b/htsworkflow/frontend/templates/samples/library_detail.html index d073103..0aa83d0 100644 --- a/htsworkflow/frontend/templates/samples/library_detail.html +++ b/htsworkflow/frontend/templates/samples/library_detail.html @@ -98,7 +98,7 @@ {{ lib.made_by }}
Creation Date - {{ lib.creation_date }} + {{ lib.creation_date }}
Protocol Stopping Point {{ lib.stopping_point_name }} @@ -129,7 +129,7 @@ {% for result in eland_results %} - {{ result.run_date|date}} + {{ result.run_date|date}} {{ result.cycle }} {{ result.flowcell_id }} {{ result.lane }} -- 2.30.2