2018-08-04 17:01:28 +02:00
|
|
|
{% extends "base.html" %} {% block content %}
|
2018-08-15 19:18:35 +02:00
|
|
|
|
|
|
|
<form id="searchform" action="{% url 'blog_search_list_view' %}" method="get" accept-charset="utf-8">
|
|
|
|
<button class="searchbutton" type="submit">
|
|
|
|
<i class="fa fa-search"></i>
|
|
|
|
</button>
|
|
|
|
<input class="searchfield" id="searchbox" name="q" type="text" placeholder="Search">
|
|
|
|
</form>
|
2018-08-04 17:01:28 +02:00
|
|
|
<div class="table-responsive">
|
|
|
|
<table class="table table-striped table-bordered table-hover">
|
|
|
|
</table>
|
|
|
|
</div>
|
2018-07-23 07:35:45 +02:00
|
|
|
{% endblock %}
|