27 lines
759 B
HTML
27 lines
759 B
HTML
{% extends "base.html" %}
|
|
{% import "macros.html" as m %}
|
|
|
|
{% block title %}Welcome to Witch Watch, Bish{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>Whatcha Watchin?</h1>
|
|
|
|
<div class="quicksearch-query">{{self.search}}</div>
|
|
|
|
<div class="watchlist">
|
|
<ul>
|
|
{% for watch in watches %}
|
|
<li><span class="watchtitle">{{watch.title}}</span> -- {% call m::get_or_default(watch.release_date, "when??") %}: </li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
<p>
|
|
<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>
|
|
<input type="submit" value="Let's go!">
|
|
</form>
|
|
</p>
|
|
|
|
{% endblock %}
|