~lukasz-czyzykowski/twitbuntu/settings-cleanup

« back to all changes in this revision

Viewing changes to templates/user.html

  • Committer: Łukasz Czyżykowski
  • Date: 2009-09-02 14:02:24 UTC
  • Revision ID: lukasz.czyzykowski@canonical.com-20090902140224-h46r8wylp9l610ln
Added base template to the project

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<html>
2
 
  <head>
3
 
    <title>Updates for {{ user.username }}</title>
4
 
  </head>
5
 
  <body>
 
1
{% extends "base.html" %}
 
2
{% block title %}Updates for {{ user.username }}{% endblock %}
 
3
{% block content %}
6
4
    <h1>Updates for {{ user.username }}</h1>
7
5
    <table>
8
6
      {% for update in updates %}
12
10
      </tr>
13
11
      {% endfor %}
14
12
    </table>
15
 
  </body>
16
 
</html>
 
13
{% endblock %}