blob: fa775fd6d7d712ded76f6f1ad44c18b5671a1463 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<style>
@import "static/appstats_css.css";
</style>
<title>AppStats - {{env.APPLICATION_ID}}</title>
{% block headstuff %}{% endblock %}
</head>
<body>
<div class="g-doc">
{# Header begin #}
<div id="hd" class="g-section">
<div class="g-section">
<a href="/stats/"><img id="ae-logo" src="static/app_engine_logo_sm.gif"
width="176" height="30" alt="Google App Engine" border="0"></a>
</div>
<div id="ae-appbar-lrg" class="g-section">
<h1>Application Stats for {{env.APPLICATION_ID}}</h1>
</div>
</div>
{# Header end #}
{# Body begin #}
<div id="bd" class="g-section">
{# Content begin #}
<div>
{% block content %}
{# REAL BODY GOES HERE #}
{% endblock %}
</div>
{# Content end #}
</div>
{# Body end #}
</div>
<script src="static/appstats_js.js"></script>
{% block tailstuff %}{% endblock %}
</body>
</html>
|