Making the docs template prettier
authorDmitri Gaskin <dmitrig01@gmail.com>
Sat, 08 Nov 2008 17:40:12 +0000
changeset 450 365c2cc68bd7
parent 449 a4dc4c9e7356
child 451 c79a84c59f42
Making the docs template prettier
app/soc/content/css/soc-081108.css
app/soc/templates/soc/docs/public.html
--- a/app/soc/content/css/soc-081108.css	Sat Nov 08 17:06:35 2008 +0000
+++ b/app/soc/content/css/soc-081108.css	Sat Nov 08 17:40:12 2008 +0000
@@ -275,18 +275,7 @@
   padding-top: 20px;
 }
 
-#lastmodified {
-  text-align: right;
-  font-size: small;
-}
-
-#createdon {
-  text-align: right;
-  font-size: small;
-}
-
-#createdby {
-  text-align: right;
+#created {
   font-size: small;
 }
 
--- a/app/soc/templates/soc/docs/public.html	Sat Nov 08 17:06:35 2008 +0000
+++ b/app/soc/templates/soc/docs/public.html	Sat Nov 08 17:40:12 2008 +0000
@@ -22,8 +22,6 @@
 {% endblock %}
 
 {% block body %}
-<div id="createdon">Created on: {{ entity.created }}</div>
-<div id="createdby">Created by: {{ entity.author.nick_name }}</div>
+<div id="created">Created on {{ entity.created }} by {{ entity.author.nick_name }}</div>
 <div id="content">{{ entity.content|safe }}</div>
-<div id="lastmodified">Last updated on: {{ entity.modified }}</div>
 {% endblock %}