From 50ce87030f2f7c66b633b370ef532284ac09ff54 Mon Sep 17 00:00:00 2001 From: Luan Date: Wed, 11 Dec 2013 15:13:02 -0200 Subject: [PATCH] Adding identi.ca and bio field to be displayed on user profile --- src/accounts/templates/accounts/user_detail.html | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/src/accounts/templates/accounts/user_detail.html b/src/accounts/templates/accounts/user_detail.html index d717a38..fd36bd9 100644 --- a/src/accounts/templates/accounts/user_detail.html +++ b/src/accounts/templates/accounts/user_detail.html @@ -46,18 +46,29 @@ {% if request.user.is_active %}
  • {% if user_.twitter %} - {{ user_.twitter }} + {{ user_.twitter }} {% endif %} {% if user_.facebook %} - {{ user_.facebook }} + {{ user_.facebook }} {% endif %}
  • {% if user_.google_talk %} -
  • {{ user_.google_talk }}
  • +
  • {{ user_.google_talk }}
  • {% endif %} + + {% if user_.identi_ca %} +
  • {{ user_.identi_ca }}
  • + {% endif %} + {% if user_.webpage %} -
  • {{ user_.webpage }}
  • +
  • {{ user_.webpage }}
  • + {% endif %} + {% if user_.bio %} +
  • + {% trans 'Bio' %} +
  • +
  • {{ user_.bio }}
  • {% endif %} {% endif %} -- libgit2 0.21.2