_search_bar.html 418 Bytes
Newer Older
1 2 3 4
<%! from django.core.urlresolvers import reverse %>

<%
def url_for_search():
5
  return reverse('django_comment_client.forum.views.search', args=[course_id])
6 7 8
%>

<form action="${url_for_search()}" method="get" class="discussion-search-form">
9
  <input class="search-input" type="text" value="${text}" id="keywords" autocomplete="off"/>
10
  <div class="discussion-link" href="javascript:void(0)">Search posts</div>
11
</form>