Verhübschen. #3787

pull/6827/head
Felix Schäfer 14 years ago
parent 7f93c1d8ca
commit c355112118
  1. 1
      app/views/meeting_contents/_tab.html.erb
  2. 14
      app/views/meetings/show.html.erb
  3. 1
      assets/stylesheets/redmine_meeting.css

@ -0,0 +1 @@
<%= render(:partial => "meeting_contents/show", :locals => {:content => tab[:content], :content_type => tab[:content_type]}) %>

@ -4,18 +4,20 @@
<%= link_to_if_authorized(l(:button_delete), {:action => 'destroy'}, :method => :delete, :confirm => l(:text_are_you_sure), :class => 'icon icon-del')%>
</div>
<h2><%= l(:label_meeting) %> #<%= @meeting.id %></h2>
<h2><%= l(:label_meeting) %>: <%=h @meeting.title %></h2>
<div class="meeting details">
<div class="meeting details box">
<%= avatar(@author, :size => "64") %>
<h3><%=h @meeting.title %></h3>
<p class="author"><%= authoring @meeting.created_at, @author %></p>
<div class="splitcontentleft">
<p><strong><%= l(:field_location) %></strong>: <%=h @meeting.location %></p>
<p><strong><%= l(:field_start_time) %></strong>: <%= format_time @meeting.start_time %></p>
</div>
<div class="splitcontentright">
<p><strong><%= l(:field_duration) %></strong>: <%= l_hours(@meeting.duration) %></p>
<p><strong><%= l(:field_participants) %></strong>: <%=h @meeting.participants.join(", ") %></p>
</div>
<div style="clear:both;"> </div>
</div>
<%= render(:partial => "meeting_contents/show", :locals => {:content => @meeting.agenda, :content_type => "meeting_agenda"}) %>
<%= render(:partial => "meeting_contents/show", :locals => {:content => @meeting.minutes, :content_type => "meeting_minutes"}) %>
<%= render_tabs [{:name => 'agenda', :action => :create_meeting_agendas, :partial => 'meeting_contents/tab', :label => :label_meeting_agenda, :content => @meeting.agenda, :content_type => "meeting_agenda"}, {:name => 'minutes', :action => :create_meeting_minutes, :partial => 'meeting_contents/tab', :label => :label_meeting_minutes, :content => @meeting.minutes, :content_type => "meeting_minutes"}] %>

@ -1,2 +1 @@
div.meeting { padding-bottom: 1em; }
div.meeting_content { padding-bottom: 2em; }
Loading…
Cancel
Save