summaryrefslogtreecommitdiffstats
path: root/google-appengine/google/appengine/ext/appstats/templates/file.html
blob: 3496bb8716eb224fce5c70cb4fd3e5bf7447d8b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "base.html" %}

{% block content %}

<h1>{{orig_filename|escape}}</h1>
<a href="#n{{lineno|add:"-10"}}">Go to line {{lineno}}</a> |
<a href="#bottom">Go to bottom</a>

<pre>
{% for line in fp %}<span id="n{{forloop.counter}}"{% ifequal forloop.counter lineno %} style="background-color: yellow;"{% endifequal %}>{{forloop.counter|rjust:"4"}}: {{line|escape}}</span>{% endfor %}
</pre>
<a name="bottom" href="#">Back to top</a>
</div>

{% endblock %}