]> git.parisson.com Git - teleforma.git/commitdiff
add rounded, fix gender
authoryomguy <yomguy@parisson.com>
Mon, 21 Jan 2013 20:26:47 +0000 (21:26 +0100)
committeryomguy <yomguy@parisson.com>
Mon, 21 Jan 2013 20:26:47 +0000 (21:26 +0100)
teleforma/static/teleforma/css/teleforma.css
teleforma/views/pro.py

index 74d75e57e1837ba229265ce2a032e134b7f35af5..e074c3c256d35cbce4043860cf01f8faabef2e19 100644 (file)
@@ -1544,7 +1544,7 @@ input,textarea{
     -moz-border-radius: 8px 0px 8px 8px;
     -webkit-border-radius: 8px 0px 8px 8px;
     border-radius: 8px 0px 8px 8px;
-    padding: 0em 0em 0.5em 0em;
+    padding: 0em 0em 0em 0em;
     margin-top: 0.8em;
     border: 1px solid #dfdfdf;
 }
index 6182522fe4f07686b298a4969c06ceb26fcc8a29..9508f6d9db04e7c8fe8181ea50befde3136ef6b2 100644 (file)
@@ -274,7 +274,7 @@ class AnswersView(ListView):
         
         auditor = user.auditor.all()
         if auditor:
-            context['gender'] = auditor[0].gender
+            context['gender'] = unicode(_(auditor[0].gender))
         else:
             context['gender'] = user.first_name
         context['lastname'] = user.last_name