<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>app/views/families/_map.erb</filename>
    </added>
    <added>
      <filename>app/views/families/_map_link.erb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -5,11 +5,19 @@
   &lt;% end %&gt;
 &lt;% end %&gt;
 
+&lt;% if @family.has_photo? %&gt;
+  &lt;% content_for :sidebar do %&gt;
+    &lt;%= render :partial =&gt; 'families/photo' %&gt;
+  &lt;% end %&gt;
+&lt;% end %&gt;
+
+&lt;%= render :partial =&gt; 'map' %&gt;
+
 &lt;h1&gt;&lt;%=h @family.name %&gt;&lt;/h1&gt;
 
 &lt;p&gt;&lt;%= number_to_phone @family.home_phone, :area_code =&gt; true %&gt;&lt;/p&gt;
 
-&lt;p&gt;&lt;%= @family.pretty_address %&gt;&lt;/p&gt;
+&lt;p&gt;&lt;%= @family.pretty_address %&gt; &lt;%= render :partial =&gt; 'families/map_link' %&gt;&lt;/p&gt;
 
 &lt;h2&gt;People&lt;/h2&gt;
 
@@ -36,7 +44,7 @@
   &lt;p&gt;&lt;em&gt;No one in this family yet.&lt;/em&gt;&lt;/p&gt;
 &lt;% end %&gt;
 
-&lt;p&gt;&lt;%= link_to image_tag('add_small.gif', :alt =&gt; 'add person', :class =&gt; 'icon') + ' Add a person to this family.',
+&lt;p&gt;&lt;%= link_to image_tag('add_small.gif', :alt =&gt; 'add person', :class =&gt; 'icon') + ' Create a new person in this family.',
   new_person_path(:family_id =&gt; @family) %&gt;&lt;/p&gt;
   
 &lt;%= javascript_include_tag 'dragdrop.js' %&gt;</diff>
      <filename>app/views/families/show.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -1,12 +1,30 @@
-&lt;ul&gt;
-  &lt;% @group.people_names_and_ids.each do |person| %&gt;
-    &lt;% if person and @logged_in.sees? person %&gt;
-      &lt;%= render :partial =&gt; 'people/link', :locals =&gt; {:person =&gt; person} %&gt;
-      &lt;% if @group.admin?(person, true) %&gt;(admin)&lt;% end %&gt;
+&lt;table&gt;
+    &lt;% @group.people_names_and_ids.each do |person| %&gt;
+      &lt;% if person and @logged_in.sees? person %&gt;
+      &lt;tr&gt;
+        &lt;td&gt;
+          &lt;a href=&quot;&lt;%= url_for person %&gt;&quot;&gt;
+            &lt;%= render :partial =&gt; 'people/thumbnail', :locals =&gt; {:person =&gt; person} %&gt;
+          &lt;/a&gt;
+        &lt;/td&gt;
+        &lt;td class=&quot;person&quot;&gt;
+          &lt;%= link_to h(person.name), person %&gt; 
+            &lt;% if @group.admin?(person, true) %&gt;&lt;br /&gt;(admin)&lt;% end %&gt;
       &lt;% if @logged_in.can_edit?(@group) and (person.email.to_s.empty? or !@group.get_options_for(person).get_email?) %&gt;
-        &lt;em&gt;no mail&lt;/em&gt;
+        &lt;em&gt;&lt;br /&gt;(no mail)&lt;/em&gt;
+      &lt;% end %&gt;
+      
+          &lt;% if person.birthday_soon? %&gt;&lt;span class=&quot;small&quot;&gt;
+            &lt;br/&gt;
+            &lt;%= image_tag('birthday.png', :alt =&gt; 'Birthday', :class =&gt; 'icon') %&gt;
+            &lt;%= person.birthday.strftime('%m/%d') %&gt;&lt;/span&gt;
+          &lt;% end %&gt;
+
+
+        &lt;/span&gt;
+        &lt;/td&gt;
+      &lt;/tr&gt;
       &lt;% end %&gt;
-      &lt;br/&gt;
     &lt;% end %&gt;
-  &lt;% end %&gt;
-&lt;/ul&gt;
+&lt;/table&gt;
+</diff>
      <filename>app/views/groups/_people.erb</filename>
    </modified>
    <modified>
      <diff>@@ -10,13 +10,13 @@
         &lt;/td&gt;
         &lt;td class=&quot;person&quot;&gt;
           &lt;%= link_to h(person.name), person %&gt;
-          &lt;% if person.birthday_soon? %&gt;
+          &lt;% if person.birthday_soon? %&gt;&lt;span class=&quot;small&quot;&gt;
             &lt;br/&gt;
             &lt;%= image_tag('birthday.png', :alt =&gt; 'Birthday', :class =&gt; 'icon') %&gt;
-            birthday &lt;%= person.birthday.to_time.to_s :date rescue nil %&gt;
+            &lt;%= person.birthday.strftime('%m/%d') %&gt;&lt;/span&gt;
           &lt;% end %&gt;
         &lt;/td&gt;
       &lt;/tr&gt;
     &lt;% end %&gt;
   &lt;/table&gt;
-&lt;% end %&gt;
+&lt;% end %&gt;
\ No newline at end of file</diff>
      <filename>app/views/people/_sidebar_people.erb</filename>
    </modified>
    <modified>
      <diff>@@ -372,13 +372,11 @@ p {
 
 h1 {
 	font-size: 250%;
-	margin-bottom: 20px;
+	margin-bottom: 5px;
 	line-height: 20pt;
 }
 
-.below-h1 {
-	margin-top: -10px;
-}
+
 
 h2 {
 	margin-top: 15px;
@@ -806,8 +804,8 @@ h2.headline {
 }
 
 .user-type {
-  margin-top: -22px;
-  font-weight: bold;
+    font-weight: bold;
+    margin-top: -1px;
 }
 
 #banner {
@@ -959,3 +957,12 @@ code {
 .errorExplanation h2 {
   color: red;
 }
+
+li.family-member{
+    margin-bottom: 1px;
+}
+
+
+.small{
+    font-size: 0.8em;
+}
\ No newline at end of file</diff>
      <filename>public/stylesheets/aqueouslight.css</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>259f8a6490a3efd86fe5e6a19b87ffc149aca567</id>
    </parent>
  </parents>
  <author>
    <name>Tim Morgan</name>
    <email>tim@timmorgan.org</email>
  </author>
  <url>http://github.com/seven1m/onebody/commit/372e6b9cdf2ad1f88b4307679db3c8c1e20bb0bf</url>
  <id>372e6b9cdf2ad1f88b4307679db3c8c1e20bb0bf</id>
  <committed-date>2008-10-15T08:29:10-07:00</committed-date>
  <authored-date>2008-10-15T06:14:00-07:00</authored-date>
  <message>Make family appear more consistent with site; other appearance improvements (Ben Hudson).</message>
  <tree>269e78ead74319b4a3e523884a3987b7927728c6</tree>
  <committer>
    <name>Tim Morgan</name>
    <email>tim@timmorgan.org</email>
  </committer>
</commit>
