This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
logtracker/logtracker/mail/templates/entries/home.html

19 lines
437 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>Mailtracker</h1>
<h2>Search by recipient</h2>
<form action="." method="post">{% csrf_token %}
Address:
<input type="text" name="address">
<input type="radio" name="field" value="from" checked>Sender
<input type="radio" name="field" value="to">Recipient<br>
<input type="submit" value="Search">
</form>
<a href="{% url 'senders' %}">Recent senders list</a>
{% endblock %}