From 940cf6f174a2823d0bea5d4e88ad3a5b04e62774 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?An=C3=ADbal=20Lim=C3=B3n?= Date: Wed, 4 Jan 2017 13:42:32 -0600 Subject: [PATCH] templates/rrs/recipedetail.html: Fix unneeded quotes in url call MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The url template function resolve an URL associated with a model, so in Django 1.6 quotes around variables don't get the variable value. Signed-off-by: Aníbal Limón --- templates/rrs/recipedetail.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/rrs/recipedetail.html b/templates/rrs/recipedetail.html index fc3395c..9ac15da 100644 --- a/templates/rrs/recipedetail.html +++ b/templates/rrs/recipedetail.html @@ -79,7 +79,7 @@ {{ rud.version }} {% if rud.milestone_name %} - + {{ rud.release_name }} {% if rud.milestone_name != "All" %} {{ rud.milestone_name }} @@ -97,7 +97,7 @@ {{ rud.date }} {% if rud.is_recipe_maintainer %} - {{ rud.maintainer_name }} + {{ rud.maintainer_name }} {% else %} {{ rud.maintainer_name }} {% endif %}