From 2e8e650733755ea8d32024ba955208afc355fd00 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Thu, 9 Jun 2016 10:25:52 +0100 Subject: [PATCH] Put same info in both tables of notifications MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We have tables listing notifications on: - the job page - the ‘activity’ page Previously that had subtly different information, in a different order. This commit makes them exactly the same. --- app/assets/stylesheets/components/table.scss | 1 + app/templates/partials/jobs/notifications.html | 15 ++++++++++----- tests/app/main/views/test_jobs.py | 6 ++++-- 3 files changed, 15 insertions(+), 7 deletions(-) diff --git a/app/assets/stylesheets/components/table.scss b/app/assets/stylesheets/components/table.scss index 7e6f0c8f8..45a86e33e 100644 --- a/app/assets/stylesheets/components/table.scss +++ b/app/assets/stylesheets/components/table.scss @@ -17,6 +17,7 @@ .table-row { th { width: 52.5%; + font-weight: normal; a { max-height: 1.25em; diff --git a/app/templates/partials/jobs/notifications.html b/app/templates/partials/jobs/notifications.html index 2dd4ecdc8..9241aa83f 100644 --- a/app/templates/partials/jobs/notifications.html +++ b/app/templates/partials/jobs/notifications.html @@ -1,4 +1,4 @@ -{% from "components/table.html" import list_table, field, right_aligned_field_heading %} +{% from "components/table.html" import list_table, field, right_aligned_field_heading, date_field, row_heading %}