what2watch/templates/search_watches_page.html

52 lines
1.4 KiB
HTML
Raw Normal View History

2023-06-15 05:11:43 +00:00
{% extends "base.html" %}
{% import "macros.html" as m %}
2023-07-09 04:26:28 +00:00
{% block title %}Welcome to What 2 Watch, Bish{% endblock %}
2023-06-15 05:11:43 +00:00
{% block content %}
<h1>Whatcha Watchin?</h1>
<div class="quicksearch-query">{{self.search}}</div>
<div class="watchlist">
<ul>
{% for watch in watches %}
2023-12-30 20:18:08 +00:00
<li><span class="watchtitle">{{watch.title}}</span> -- {% call m::get_or_default(watch.year(), "when??") -%}:
{{watch.kind}} </li>
2023-06-15 05:11:43 +00:00
{% endfor %}
</ul>
</div>
2023-06-18 19:03:10 +00:00
<h2>Simple Search</h2>
<div class="simplesearch">
2023-06-15 05:11:43 +00:00
<form action="/search" enctype="application/x-www-form-urlencoded" method="get">
<label for="search">Looking for something else to watch?</label>
<input type="text" name="search" id="search"></br>
2023-06-18 19:03:10 +00:00
<input type="submit" value="Let's go!">
</div>
<h2>Fussy Search</h2>
<div class="fullsearch">
2023-12-30 20:18:08 +00:00
<label for="title">Title</label>
<input type="text" name="title" id="title"></br>
<label for="year">Release Year</label>
<input type="text" name="year" id="year"></br>
<label for="kind">Type</label>
<select id="kind" name="kind">
<option value="">Unknown</option>
<option value="0">Movie</option>
<option value="1">Series</option>
<option value="2">Limited Series</option>
<option value="3">Short</option>
<option value="4">Other</option>
</select>
<input type="submit" value="Let's go!">
2023-06-15 05:11:43 +00:00
</form>
2023-06-18 19:03:10 +00:00
</div>
2023-06-15 05:11:43 +00:00
{% endblock %}