From b882170cb07ab0ce4da5fd68e9effa311439c995 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Mon, 17 Jan 2011 07:23:23 +0100 Subject: [PATCH] Move status update form to post feed page. --- src/main/resources/static/css/sone.css | 4 ++++ src/main/resources/templates/include/head.html | 1 - src/main/resources/templates/index.html | 2 ++ 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/main/resources/static/css/sone.css b/src/main/resources/static/css/sone.css index f39cfef..323cb0e 100644 --- a/src/main/resources/static/css/sone.css +++ b/src/main/resources/static/css/sone.css @@ -147,6 +147,10 @@ textarea { padding-left: 1ex; } +#sone #update-status { + margin-bottom: 1em; +} + #sone #update-status label { display: none; } diff --git a/src/main/resources/templates/include/head.html b/src/main/resources/templates/include/head.html index 2c2cf3f..4e43da4 100644 --- a/src/main/resources/templates/include/head.html +++ b/src/main/resources/templates/include/head.html @@ -44,7 +44,6 @@
<% currentSone|store key=sone> <%include include/viewSone.html> - <%include include/updateStatus.html>
<%/if> diff --git a/src/main/resources/templates/index.html b/src/main/resources/templates/index.html index 345f376..59bfee7 100644 --- a/src/main/resources/templates/index.html +++ b/src/main/resources/templates/index.html @@ -4,6 +4,8 @@

<%= Page.Index.PostList.Title|l10n|html>

+ <%include include/updateStatus.html> +
<%= page|store key=pageParameter> <%include include/pagination.html> -- 2.7.4