diff --git a/ihatemoney/static/css/main.css b/ihatemoney/static/css/main.css index 135a6840..a646b175 100644 --- a/ihatemoney/static/css/main.css +++ b/ihatemoney/static/css/main.css @@ -333,7 +333,8 @@ footer .footer-left { } .project-actions > .delete, -.project-actions > .edit { +.project-actions > .edit, +.project-actions > .see { font-size: 0px; display: block; width: 16px; @@ -351,6 +352,10 @@ footer .footer-left { background: url("../images/edit.png") no-repeat right; } +.project-actions > .see { + background: url("../images/see.png") no-repeat right; +} + .balance .balance-value { text-align: right; } diff --git a/ihatemoney/templates/dashboard.html b/ihatemoney/templates/dashboard.html index c6c50581..b77a0ba8 100644 --- a/ihatemoney/templates/dashboard.html +++ b/ihatemoney/templates/dashboard.html @@ -1,13 +1,11 @@ {% extends "layout.html" %} {% block content %} {% if is_admin_dashboard_activated %} - - -
{{ _("Project") }} | {{ _("Number of members") }} | {{ _("Number of bills") }} | {{_("Newest bill")}} | {{_("Oldest bill")}} | {{_("Actions")}} |
---|---|---|---|---|---|
{{ project.name }} | {{ project.members | count }} | {{ project.get_bills().count() }} | +|||
{{ project.name }} | {{ project.members | count }} | {{ project.get_bills().count() }} | {% if project.has_bills() %}{{ project.get_bills().all()[0].date }} | {{ project.get_bills().all()[-1].date }} | @@ -18,6 +16,7 @@{{ _('edit') }} {{ _('delete') }} + {{ _('see') }} |