mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
21 lines
240 B
HTML
21 lines
240 B
HTML
{% extends "base.html" %}
|
|
{% load staticfiles %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
|
|
|
|
<h2>Page View Report</h2>
|
|
|
|
|
|
<ul>
|
|
|
|
{% for greeting in greetings %}
|
|
<li>{{ greeting.when }}</li>
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{% endblock %} |