OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/app/views/meetings/show.html.erb

39 lines
2.2 KiB

<div class="contextual">
<%= watcher_link @meeting, User.current %>
<%= link_to_if_authorized(l(:button_edit), {:controller => 'meetings', :action => 'edit', :id => @meeting}, :class => 'icon icon-edit')%>
<%= link_to_if_authorized(l(:button_copy), {:controller => 'meetings', :action => 'copy', :id => @meeting}, :class => 'icon icon-copy')%>
<%= link_to_if_authorized(l(:button_delete), {:controller => 'meetings', :action => 'destroy', :id => @meeting}, :method => :delete, :confirm => l(:text_are_you_sure), :class => 'icon icon-del')%>
</div>
<h2><%= l(:label_meeting) %>: <%= link_to @meeting %></h2>
<div class="meeting details box">
<%= avatar(@meeting.author, :size => "64") %>
<p class="author"><%= authoring @meeting.created_at, @meeting.author %></p>
<div class="splitcontentleft">
<p><strong><%= l(:field_start_time) %></strong>: <%= format_date @meeting.start_date %> <%= format_time @meeting.start_time, false %> - <%= format_time @meeting.end_time, false %> <%= Time.zone %></p>
</div>
<div class="splitcontentright">
<p><strong><%= l(:field_location) %></strong>: <%=h @meeting.location %></p>
</div>
<div style="clear:both;"> </div>
<p><strong><%= l(:field_participants_invited) %></strong>: <%= format_participant_list @meeting.participants.invited %></p>
<p><strong><%= l(:field_participants_attended) %></strong>: <%= format_participant_list @meeting.participants.attended %></p>
</div>
<%= render_tabs [{:name => 'agenda', :action => :create_meeting_agendas, :partial => 'meeting_contents/show', :label => :label_meeting_agenda, :content => @meeting.agenda || @meeting.build_agenda, :content_type => "meeting_agenda"},
{:name => 'minutes', :action => :create_meeting_minutes, :partial => 'meeting_contents/show', :label => :label_meeting_minutes, :content => @meeting.minutes || @meeting.build_minutes, :content_type => "meeting_minutes"}] %>
<% if @meeting.journals.changing.present? %>
<div id="history">
<h3><%=l(:label_history)%></h3>
<% @meeting.journals.each do |journal| %>
<%= render_journal @meeting, journal %>
<% end %>
</div>
<% end %>
<% content_for :header_tags do %>
<%= stylesheet_link_tag 'openproject_meeting', :plugin => 'openproject_meeting' %>
<% end %>