2018-06-09 01:03:02 +02:00
|
|
|
|
{% extends "base.html" %}
|
|
|
|
|
{% load widget_tweaks %}
|
|
|
|
|
|
2018-07-18 19:40:42 +02:00
|
|
|
|
{% block title %}brutaldon ({{ own_acct.username }}) – search {% endblock %}
|
2018-06-09 01:03:02 +02:00
|
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
<h1 class="title">Search</h1>
|
|
|
|
|
|
|
|
|
|
<div class="notification">
|
|
|
|
|
<div>
|
|
|
|
|
You can search for tags, users, or for specific toots by URL. You may
|
|
|
|
|
also be able to full-text search for toots you have previously
|
|
|
|
|
interacted with.
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<form method="get" action="{% url "search_results" %}">
|
|
|
|
|
<div class="field">
|
|
|
|
|
<label class="label">{{ form.instance.label }}</label>
|
|
|
|
|
<div class="control has-icons-left">
|
|
|
|
|
<input type="search" name="q" id="q" class="input">
|
|
|
|
|
<span class="icon is-small is-left">
|
|
|
|
|
<i class="fa fa-search"></i>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="field">
|
2018-06-09 19:49:04 +02:00
|
|
|
|
<input type="submit" value="Search" class="button is-primary" >
|
2018-06-09 01:03:02 +02:00
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|