2015-12-06 14:58:48 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="row">
|
|
|
|
<div class="span12">
|
2015-12-06 22:40:57 +01:00
|
|
|
{% if mailheader %}
|
|
|
|
<h1>Can't parse the given e-mail header</h1>
|
|
|
|
<p>Want to try some examples instead (choose from the menu above)?</p>
|
2015-12-06 14:58:48 +01:00
|
|
|
<pre>{{ mailheader }}</pre>
|
2015-12-06 22:40:57 +01:00
|
|
|
{% else %}
|
|
|
|
<h1>Sorry, no data to analyze given.</h1>
|
|
|
|
<p>Please insert a header into the form and try again.</p>
|
|
|
|
{% endif %}
|
2015-12-06 14:58:48 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|