<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -3,7 +3,7 @@ class Forums &lt; Application
   before :login_required, :exclude =&gt; [:index, :show]
   
   def index
-    @forums = Forum.find(:all)
+    @forums = Forum.find(:all, :order =&gt; &quot;position&quot;)
     display @forums
   end
 </diff>
      <filename>app/controllers/forums.rb</filename>
    </modified>
    <modified>
      <diff>@@ -7,7 +7,7 @@
   &lt;thead&gt;
     &lt;tr&gt;
       &lt;th&gt;Forums&lt;/th&gt;
-      &lt;th&gt;Last Post&lt;/th&gt;
+      &lt;th class=&quot;last_update&quot;&gt;Last Post&lt;/th&gt;
     &lt;/tr&gt;
   &lt;/thead&gt;
   &lt;tbody&gt;
@@ -19,9 +19,9 @@
       &lt;%= forum.description_html %&gt;
       &lt;p&gt;&lt;small&gt;&lt;/small&gt;&lt;/p&gt;
     &lt;/td&gt;
-    &lt;td&gt;
+    &lt;td class=&quot;last_update&quot;&gt;
       &lt;p&gt;
-        &lt;%= forum.posts.reverse.first.updated_at %&gt;
+        &lt;%= forum.posts.empty? ? &quot;Never&quot; : forum.posts.reverse.first.updated_at %&gt;
       &lt;/p&gt;
     &lt;/td&gt;
   &lt;/tr&gt;</diff>
      <filename>app/views/forums/index.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -5,16 +5,16 @@
   &lt;thead&gt;
     &lt;tr&gt;
       &lt;th&gt;Topics&lt;/th&gt;
-      &lt;th&gt;Posts&lt;/th&gt;
-      &lt;th&gt;Last Update&lt;/th&gt;
+      &lt;th class=&quot;post_count&quot;&gt;Posts&lt;/th&gt;
+      &lt;th class=&quot;last_update&quot;&gt;Last Update&lt;/th&gt;
     &lt;/tr&gt;
   &lt;/thead&gt;
   &lt;tbody&gt;
     &lt;% @forum.topics.each do |topic| %&gt;
       &lt;tr&gt;
         &lt;td&gt;&lt;%= link_to topic.title, url(:forum_topic,topic) %&gt;&lt;/td&gt;
-        &lt;td&gt;&lt;%= topic.posts.size %&gt;&lt;/td&gt;
-        &lt;td&gt;&lt;%= topic.posts.reverse.first.updated_at %&gt;&lt;/td&gt;
+        &lt;td class=&quot;post_count&quot;&gt;&lt;%= topic.posts.size %&gt;&lt;/td&gt;
+        &lt;td class=&quot;last_update&quot;&gt;&lt;%= topic.posts.reverse.first.updated_at %&gt;&lt;/td&gt;
       &lt;/tr&gt;
     &lt;% end %&gt;
   &lt;/tbody&gt;</diff>
      <filename>app/views/topics/index.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -29,7 +29,7 @@ table {
 	border-collapse:collapse;
 }
 th{
-	background-color:#3F3F3F;
+	background-color:#333;
 	color:#fff;
 	text-align:left;
 }
@@ -42,6 +42,9 @@ td {
 td + td {
 	border-left:1px solid #111;
 }
+th + th {
+	border-left:1px solid #222;
+}
 label {
 	display:block;
 }
@@ -60,4 +63,14 @@ li {
 }
 td.author {
 	width:10em;
+}
+th.post_count, td.post_count {
+	width:2em;
+	text-align:center;
+}
+th.last_update, td.last_update {
+	width:20em;
+}
+td.last_update {
+	background-color:#CCC;
 }
\ No newline at end of file</diff>
      <filename>public/stylesheets/master.css</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>fc88196cc862e64dc9fd645e3b8a06c7edabe895</id>
    </parent>
  </parents>
  <author>
    <name>Shay Arnett</name>
    <email>shayarnett@gmail.com</email>
  </author>
  <url>http://github.com/shayarnett/merbums/commit/7bd55b79b901c04b99a6701159d1e0acd3453e4f</url>
  <id>7bd55b79b901c04b99a6701159d1e0acd3453e4f</id>
  <committed-date>2008-03-21T21:57:11-07:00</committed-date>
  <authored-date>2008-03-21T21:57:11-07:00</authored-date>
  <message>error fix and more prettying up</message>
  <tree>522beed721a295f8af57be475c6bedf2e7deb414</tree>
  <committer>
    <name>Shay Arnett</name>
    <email>shayarnett@gmail.com</email>
  </committer>
</commit>
