Skip to content
This repository has been archived by the owner on May 7, 2024. It is now read-only.

Commit

Permalink
added no meeting message
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Svihla committed Dec 4, 2011
1 parent 54e6e78 commit 3e24889
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions views/index.haml
Expand Up @@ -12,8 +12,12 @@
%p.dotline
%h3 Upcoming Meetings
%br
- @next_meetings.each do |meeting|
= partial :meeting_kind , :locals=>{:next_meeting => meeting}
%p.dotline
%img{:src=>"images/blank.gif", :width => "40", :height => "1", :alt => ""}
%br
- if @next_meetings.count == 0
%p
There are no upcoming meetings.
- else
- @next_meetings.each do |meeting|
= partial :meeting_kind , :locals=>{:next_meeting => meeting}
%p.dotline
%img{:src=>"images/blank.gif", :width => "40", :height => "1", :alt => ""}
%br

0 comments on commit 3e24889

Please sign in to comment.