public
Description: Canberra Ruby Crew Site #crc
Homepage: http://canberraruby.com
Clone URL: git://github.com/artpop/crc_site.git
crc_site / app / views / meetings / show.html.haml
100644 29 lines (24 sloc) 0.551 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
%p
  %strong Date:
  =h @meeting.date
 
%p
  %strong Venue:
  =h @meeting.venue
  
%p
  %strong Topics:
%ul
  - for topic in @meeting.topics
    %li
      = link_to topic.title, topic.link
      \-
      = topic.description
 
%p
  %strong Attendees:
%ul{ :style => 'list-style:none; padding-left: 0' }
  - for person in @meeting.attendees
    %li.peep
      = image_tag(person.gravatar_url(:size => 32), :alt => person.name, :valign => 'middle')
      = person.name
      
= link_to 'Edit', edit_meeting_path(@meeting)
|
= link_to 'Back', meetings_path