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/journal/templates/home.html

27 lines
826 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>Logtracker</h1>
<h2>Journal entries</h2>
<ul>
<li>Recent log entries : <a href="{% url 'journal' %}?host=&lines=100">html</a> / <a href="{% url 'journal-api' %}?host=&lines=100">json</a></li>
</ul>
<h2>Emails</h2>
<ul>
<li><a href="{% url 'mail-api' %}?host=&sender=&lines=100">Recent email entries (json)</a></li>
<li><a href="{% url 'senders' %}">Recent email senders list</a></li>
<li>Search email by address:
<form action="." style="display:inline;" method="post">{% csrf_token %}
<input type="text" name="address">
<input type="radio" name="field" value="sender" checked>Sender
<input type="radio" name="field" value="recipients">Recipients
<input type="submit" value="Search">
</form>
</li>
</ul>
{% endblock %}