From 896946cc2abc03fc26c0c16fb87ae6edfe8268ef Mon Sep 17 00:00:00 2001 From: Nick Sergeant Date: Sun, 4 Dec 2011 19:48:01 -0500 Subject: [PATCH] Fix tag urls in breadcrumb --- snipt/snipts/templates/snipts/list-public.html | 2 +- snipt/snipts/templates/snipts/list-user.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/snipt/snipts/templates/snipts/list-public.html b/snipt/snipts/templates/snipts/list-public.html index b41f243..3ef040a 100644 --- a/snipt/snipts/templates/snipts/list-public.html +++ b/snipt/snipts/templates/snipts/list-public.html @@ -7,7 +7,7 @@ {% block breadcrumb %}
  • public
  • {% if tag %} -
  • / {{ tag }}
  • +
  • / {{ tag }}
  • {% endif %} {% endblock %} diff --git a/snipt/snipts/templates/snipts/list-user.html b/snipt/snipts/templates/snipts/list-user.html index 9b8a8ef..6670eac 100644 --- a/snipt/snipts/templates/snipts/list-user.html +++ b/snipt/snipts/templates/snipts/list-user.html @@ -7,7 +7,7 @@ {% block breadcrumb %}
  • {{ user.username }}
  • {% if tag %} -
  • / {{ tag }}
  • +
  • / {{ tag }}
  • {% endif %} {% endblock %}