From af862a0a1a192413acf79714eb14f55c9c3c7a2d Mon Sep 17 00:00:00 2001 From: Paul Osman Date: Fri, 3 Jun 2011 12:39:54 -0400 Subject: [PATCH] Display category / department and location in job listing page. --- apps/careers/templates/careers/home.html | 2 ++ media/css/careers.css | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/apps/careers/templates/careers/home.html b/apps/careers/templates/careers/home.html index 3888b79de1..ce78df86cf 100644 --- a/apps/careers/templates/careers/home.html +++ b/apps/careers/templates/careers/home.html @@ -20,6 +20,8 @@ {% if position %}

{{ position.title }}

+

+ {% for category in position.category.all() %}{{ category.name }}{% endfor %}, {{ position.location }}

{{ position.description|safe }}

Apply
diff --git a/media/css/careers.css b/media/css/careers.css index 0134b0c116..35be712e05 100644 --- a/media/css/careers.css +++ b/media/css/careers.css @@ -33,4 +33,9 @@ ul#positions { ul#positions li { padding: 3px 0px; +} + +div#position h1, h2, h3 { + padding: 0px; + margin: 0px 0px 10px 0px; } \ No newline at end of file