11 lines
221 B
HTML
11 lines
221 B
HTML
{% extends "base.html" %}
|
|
{% load staticfiles %}
|
|
|
|
{% block title %}Here's your plot{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1> Here's your plot</h1>
|
|
<p><image src="{% static imagename %}" width="960"/></p>
|
|
{% endblock %}
|
|
|