blob: 95c85009e4422c5e1b26522b95b88495ec0c1a19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
|
{% extends 'website/templates/base.html' %}
{% load static %}
{% load count_tags %}
{% block content %}
<div id="carousel-container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="carousel">
{% for category in categories %}
<div class="item">
<div class="thumb">
<img data-lazy="{% static "website/images/" %}{{ category }}.jpg" height="75px" width="99px">
</div>
<div class="descp">
<a class="btn btn-block btn-default btn-sm vs" href="{% url 'website:filter' category %}">{{ category }}</a>
</div>
</div> <!-- /.item -->
{% endfor %}
</div> <!-- /.carousel -->
</div> <!-- /.col -->
</div> <!-- /.row -->
</div>
<div id="filter-container">
<div class="row">
<form class ="" id="filter-form" action="" role="form">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
<h3>Filter questions . . .</h3>
<div class="row">
<div class="form-group col-lg-10 col-md-10 col-sm-10 col-xs-10">
<select id="filter-select" class="form-control">
<option value="-1">Select a FOSS category</option>
{% for category in categories %}
<option value="{{ category }}">{{ category }}</option>
{% endfor %}
</select>
</div> <!-- /.form-group, .col -->
<div class="form-group col-lg-2 col-md-2 col-sm-2 col-xs-2">
<input class="btn btn-primary btn-block" type="submit" value="Go">
</div> <!-- /.form-group, .col -->
</div>
</div> <!-- /.col -->
</form>
<div class="col-lg-6 col-md-6 col-sm-6">
<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>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
<h3 align="center"><strong>{% total_answer_count %}</strong></h3>
<h3 align="center">Answers</h3>
</div>
</div>
</div>
</div> <!-- /.row -->
</div> <!-- /#filter-container -->
<br>
<div class="panel panel-default">
<div class="panel-heading">
Recent questions
<a class="pull-right" href="{% url 'website:questions' %}">
<small>
View all questions
</small>
</a>
</div>
<div class="panel-body">
<table class="table table-bordered table-hover">
<th> FOSS </th>
<th> Tutorial</th>
<th> Min </th>
<th> Sec </th>
<th> Question <span class="glyphicon glyphicon-link"></span></th>
<th> Date</th>
<th> Views</th>
<th> Answers</th>
<th> User</th>
{% 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>
</a>
</td>
<td>
<span class="tutorial" data-toggle="tooltip" data-placement="top" title="{{ question.tutorial}}">
{{ question.tutorial|truncatechars:12 }}
</span>
<a class="pull-right" href="{% url 'website:filter' question.category question.tutorial %}?qid={{ question.id }}">
<span class="glyphicon glyphicon-search"></span>
</a>
</td>
<td>
<span>
<a href="{% url 'website:filter' question.category question.tutorial question.minute_range %}?qid={{ question.id }}">
{{ question.minute_range }}
</a>
</span>
</td>
<td>
<span>
<a href="{% url 'website:filter' question.category question.tutorial question.minute_range question.second_range%}?qid={{ question.id }}">
{{ question.second_range }}
</a>
</span>
</td>
<td>
<span class="title" data-toggle="tooltip" data-placement="top" title="{{ question.title }}">
<a href="{% url 'website:get_question' question.id %}">{{ question.title|truncatechars:40 }}</a>
</span>
</td>
<td>
<span>
<i>
{{ question.date_created|date:"d-m-y" }}
</i>
</span>
</td>
<td>
{{ question.views}}
</td>
<td>
{{ question.answer_set.count }}
</td>
<td>
<span class="title" data-toggle="tooltip" data-placement="top" title="{{ question.user }}">
{{ question.user|truncatechars:10 }}
</span>
</td>
</tr>
{% endfor %}
</table>
</div> <!-- /.panel-body -->
</div> <!-- /.panel -->
{% endblock %}
{% block javascript %}
<script>
$(document).ready(function(){
$('.carousel').slick({
lazyLoad: 'ondemand',
dots: false,
touchMove: false,
draggable: false,
slidesToShow: 8,
slidesToScroll: 3,
speed: 500,
autoplay: true,
autoplaySpeed: 1000,
});
$("#filter-form").submit(function(e) {
var category = $("#filter-select").val();
if(category != -1) {
window.location = "/filter/" + category;
}
e.preventDefault();
});
});
</script>
<script src="{% static 'website/js/nice-bar.js' %}"></script>
{% endblock %}
|