diff options
| author | Alexis Metaireau <ametaireau@gmail.com> | 2011-12-03 08:59:33 -0800 |
|---|---|---|
| committer | Alexis Metaireau <ametaireau@gmail.com> | 2011-12-03 08:59:33 -0800 |
| commit | c5a570073c454a6f3d50ce6bc35711c3a833ccc2 (patch) | |
| tree | 841428ffc5a6ca331d99622500d86daa83e5650f /budget | |
| parent | b1665770e844e930a7dd4c11598c2a8e66aa0909 (diff) | |
| parent | 0633b153f604d973d1b8a6b5c25d9b048a3de0bb (diff) | |
| download | ihatemoney-mirror-c5a570073c454a6f3d50ce6bc35711c3a833ccc2.zip ihatemoney-mirror-c5a570073c454a6f3d50ce6bc35711c3a833ccc2.tar.gz ihatemoney-mirror-c5a570073c454a6f3d50ce6bc35711c3a833ccc2.tar.bz2 | |
Merge pull request #71 from aavenel/master
Small commit to add more informations in Dashboard view.
Diffstat (limited to 'budget')
| -rw-r--r-- | budget/templates/dashboard.html | 4 | ||||
| -rw-r--r-- | budget/tests.py | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/budget/templates/dashboard.html b/budget/templates/dashboard.html index a65bd76..44ece2d 100644 --- a/budget/templates/dashboard.html +++ b/budget/templates/dashboard.html @@ -2,9 +2,9 @@ {% block content %} <table id="bill_table" class="list_bills common-table zebra-striped"> - <thead><tr><th>{{ _("Project") }}</th><th>{{ _("Number of members") }}</th><th>{{ _("Number of bills") }}</th></tr></thead> + <thead><tr><th>{{ _("Project") }}</th><th>{{ _("Number of members") }}</th><th>{{ _("Number of bills") }}</th><th>{{_("Newest bill")}}</th><th>{{_("Oldest bill")}}</th></tr></thead> <tbody>{% for project in projects %} - <tr><td>{{ project.name }}</td><td>{{ project.members | count }}</td><td>{{ project.get_bills().count() }}</td></tr> + <tr><td>{{ project.name }}</td><td>{{ project.members | count }}</td><td>{{ project.get_bills().count() }}</td><td>{{ project.get_bills()[1].date }}</td><td>{{ project.get_bills()[-1].date }}</tr> {% endfor %}</tbody> </table> {% endblock %} diff --git a/budget/tests.py b/budget/tests.py index de6317b..a5022ce 100644 --- a/budget/tests.py +++ b/budget/tests.py @@ -411,6 +411,10 @@ class BudgetTestCase(TestCase): follow_redirects=True) self.assertIn("Invalid email address", resp.data) + def test_dashboard(self): + response = self.app.get("/dashboard") + self.assertEqual(response.status_code, 200) + class APITestCase(TestCase): """Tests the API""" |
