12 lines
363 B
HTML
12 lines
363 B
HTML
{% extends "base.html" %}
|
|
{% load staticfiles %}
|
|
|
|
{% block title %}Waiting{% endblock %}
|
|
{% block meta %}<meta http-equiv="refresh" content="30">{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Waiting for your image to be processed</h1>
|
|
<p> {{ message }} </p>
|
|
<p>Please do not close this page. Page should refresh automatically (or you can hit reload)</p>
|
|
{% endblock %}
|