10 lines
180 B
HTML
10 lines
180 B
HTML
{% extends "base.html" %}
|
|
{% load staticfiles %}
|
|
|
|
{% block title %}Here's your result{% endblock %}
|
|
|
|
{% block content %}
|
|
Waiting for task with result {{ task }}
|
|
{% endblock %}
|
|
|