summaryrefslogtreecommitdiff
path: root/static/website/templates/index.html
diff options
context:
space:
mode:
authorashwinishinde2015-03-19 14:39:11 +0530
committerashwinishinde2015-03-19 14:39:11 +0530
commit4b9dffe8f6948960f816b425ecb789c9141e37e6 (patch)
tree9f27be01098475077df9261cc0d2f1e192f81121 /static/website/templates/index.html
parent2e4a5f239283af883532e367bdb9d81c2c311f1c (diff)
downloadFOSSEE-Forum-4b9dffe8f6948960f816b425ecb789c9141e37e6.tar.gz
FOSSEE-Forum-4b9dffe8f6948960f816b425ecb789c9141e37e6.tar.bz2
FOSSEE-Forum-4b9dffe8f6948960f816b425ecb789c9141e37e6.zip
Subject:CSS changed
Description:
Diffstat (limited to 'static/website/templates/index.html')
-rw-r--r--static/website/templates/index.html17
1 files changed, 9 insertions, 8 deletions
diff --git a/static/website/templates/index.html b/static/website/templates/index.html
index bad1d6b..48f0227 100644
--- a/static/website/templates/index.html
+++ b/static/website/templates/index.html
@@ -41,7 +41,7 @@
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
<h3 align="center"><strong>{% total_question_count %}</strong></h3>
- <h3 align="center">Questions</h3>
+ <h3 align="center" text-color="#7395d9" >Questions</h3>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
<h3 align="center"><strong>{% total_answer_count %}</strong></h3>
@@ -59,7 +59,7 @@
</div>
<div class="panel-body">
<table class="table table-bordered table-hover">
- <th> FOSS </th>
+ <th> FOSS <span class="glyphicon glyphicon-link"></span></th>
<!--<th> Tutorial</th>-->
<th> Question <span class="glyphicon glyphicon-link"></span></th>
<th> Date</th>
@@ -69,17 +69,18 @@
{% for question in questions %}
<tr>
<td>
- <span href="#" class="category" data-toggle="tooltip" data-placement="top" title="{{ question.category}}">
- {{ question.category|truncatechars:12 }}
- </span>
- <a class="pull-right" href="{% url 'website:filter' question.category %}?qid={{ question.id }}">
- <span class="glyphicon glyphicon-search"></span>
+ <span class="category" data-toggle="tooltip" data-placement="top" title="{{ question.category}}">
+
+ <a class="pull-left" href="{% url 'website:filter' question.category %}?qid={{ question.id }}">
+ {{ question.category|truncatechars:12 }}
+
</a>
+ </span>
</td>
<td>
- <span class="title" data-toggle="tooltip" data-placement="top" title="{{ question.title }}">
+ <span class="question" data-toggle="tooltip" data-placement="top" title="{{ question.title }}">
<a href="{% url 'website:get_question' question.id %}{% prettify question.title %}">{{ question.title|truncatechars:40 }}</a>
</span>
</td>