calibre-web-companion/CalibreWebCompanion/library/templates/search.html

15 lines
376 B
HTML
Raw Normal View History

2020-07-09 01:57:30 +00:00
{% extends "base.html" %}
{% block content %}
{% load static %}
<form action="{% url 'results' %}" method="get">
<label for="title">Title: </label>
<input id="title" type="text" name="title" value="">
<label for="author">Author: </label>
<input id="author" type="text" name="author" value="">
<input type="submit" value="search">
</form>
{% endblock %}