diff options
| author | Alexis Metaireau <alexis@notmyidea.org> | 2011-10-15 02:40:19 +0200 |
|---|---|---|
| committer | Alexis Metaireau <alexis@notmyidea.org> | 2011-10-15 02:40:19 +0200 |
| commit | 8acd4984ddb403a91548180988041a163e041b3e (patch) | |
| tree | c5d3ed000993f96385f00d9fe999275792dacff6 /budget/templates | |
| parent | ad392db53ef57c5338fd1844a336f3daf4ef9f96 (diff) | |
| download | ihatemoney-mirror-8acd4984ddb403a91548180988041a163e041b3e.zip ihatemoney-mirror-8acd4984ddb403a91548180988041a163e041b3e.tar.gz ihatemoney-mirror-8acd4984ddb403a91548180988041a163e041b3e.tar.bz2 | |
add the project's title in the list of bills
Diffstat (limited to 'budget/templates')
| -rw-r--r-- | budget/templates/layout.html | 2 | ||||
| -rw-r--r-- | budget/templates/list_bills.html | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/budget/templates/layout.html b/budget/templates/layout.html index 8c43b5e..1f04d32 100644 --- a/budget/templates/layout.html +++ b/budget/templates/layout.html @@ -2,7 +2,7 @@ <!DOCTYPE html> <html> <head> - <title>{{ _("Account manager") }}</title> + <title>{{ _("Account manager") }}{% block title %}{% endblock %}</title> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <link rel=stylesheet type=text/css href="{{ url_for("static", filename='main.css') }}"> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script> diff --git a/budget/templates/list_bills.html b/budget/templates/list_bills.html index 0a221db..440a973 100644 --- a/budget/templates/list_bills.html +++ b/budget/templates/list_bills.html @@ -1,5 +1,6 @@ {% extends "layout.html" %} +{% block title %}- {{ g.project.name }}{% endblock %} {% block js %} // display the form when clicking on the "add bill" button var show_form = function(){ |
