summaryrefslogtreecommitdiff
path: root/static/website/templates/questions.html
diff options
context:
space:
mode:
authorholyantony2015-09-24 15:16:50 +0530
committerholyantony2015-09-24 15:16:50 +0530
commitbacee20d83e33674b12cd87ee75d1d14f6810610 (patch)
treeb7a8a58b29f114f76f81fda3b7512ea752127895 /static/website/templates/questions.html
parentce96f5b782e37c019ee8f69c8067a96e33e6f1a0 (diff)
downloadFOSSEE-Forum-bacee20d83e33674b12cd87ee75d1d14f6810610.tar.gz
FOSSEE-Forum-bacee20d83e33674b12cd87ee75d1d14f6810610.tar.bz2
FOSSEE-Forum-bacee20d83e33674b12cd87ee75d1d14f6810610.zip
Subject: Fixed error if no profile is present
Description: 1. Removed last question and view previous question from slick-list 2. Removed color for user_name 3. Tooltip removed from all table
Diffstat (limited to 'static/website/templates/questions.html')
-rw-r--r--static/website/templates/questions.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/static/website/templates/questions.html b/static/website/templates/questions.html
index b7c2a45..cbed87a 100644
--- a/static/website/templates/questions.html
+++ b/static/website/templates/questions.html
@@ -38,7 +38,7 @@
<tr>
<td> </td>
<td>
- <span class="category" data-toggle="tooltip" data-placement="top" title="{{ question.category}}">
+ <span class="category" data-toggle="tooltip" data-placement="top" >
<a class="pull-left" href="{% url 'website:filter' question.category|lower %}?qid={{ question.id }}">
{{ question.category|truncatechars:12 }}
@@ -49,7 +49,7 @@
<td>
- <span class="question" data-toggle="tooltip" data-placement="top" title="{{ question.title }}">
+ <span class="question" data-toggle="tooltip" data-placement="top" >
<a href="{% url 'website:get_question' question.id %}">{{ question.title|truncatechars:40 }}</a>
</span>
</td>
@@ -76,7 +76,7 @@
</td>
<td>
- <span class="title" data-toggle="tooltip" data-placement="top" title="{{ question.user }}">
+ <span class="title" data-toggle="tooltip" data-placement="top" >
{{ question.user|truncatechars:10 }}
</span>
</td>