Sha256: 8f42094fa9f37c34ca805b786c74517bb1e2a7f7aa67ae3120880c29e975942c

Contents?: true

Size: 1.75 KB

Versions: 4

Compression:

Stored size: 1.75 KB

Contents

<div class="title">
	<h2><%= conversation.subject %></h2>
</div>
<div class="action">
	<% unless @box.eql?'trash' %><%= link_to(image_tag('btn/btn_delete.png', :atl => t('mailboxer.delete'), :title => t('mailboxer.delete')),
	conversation_path(conversation, :location => 'conversation', :box => @box),
	:confirm => t('mailboxer.delete_confirm', :object => conversation.subject),
	:method => :delete, :remote => true) %><% end %>
</div>
<div class="clearfloat">
</div>
<div class="participants">
	<h3><%= t("message.participants") %>:</h3>
	<% conversation.recipients.each do |recp| %>
	<%= link_to image_tag(recp.logo.url(:contact), :title=>recp.name, :alt => recp.name), recp.subject %>
	<% end %>
</div>
<div class="messages">
	<% @receipts.each do |receipt| %>
	<% message = receipt.message %>
	<% read_class = message.is_unread?(@actor) ? 'unread' : '' %>
	<%= render :partial => "messages/message",:object => message, :locals => {:read_class => read_class} %>
	<% end %>

	<% unless @box.eql?'trash' %>
	<br>
	<%= form_tag conversation_path(conversation), :method => :put, :class => "cont_conversation" do %>
	<% if @receipt and @receipt.errors.any? %>
		<div class="error">
			<h2><%= pluralize(@receipt.errors.count, "error") %> prohibited this message from being sent:</h2>
			<ul>
				<% @receipt.errors.full_messages.each do |msg| %>
				<li>
					<%= msg %>
				</li>
				<% end %>
			</ul>
		</div>
	<% end %>
		<div class="block">
		<div class="form_row">
			<%= t("message.answer") %>
		</div>
		<div class="form_row">
			<%= text_area_tag :body, nil,:rows =>6, :cols=> 53, :class => "required form_tag" %>
		</div>
		<div class="actions center">
			<%= submit_tag t('mailboxer.reply'), :name => :reply_all,:class => "button" %>
		</div>
	</div>
	<% end %>
	<%end %>
</div>

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
social_stream-0.11.7 base/app/views/conversations/_conversation_full.html.erb
social_stream-base-0.9.21 app/views/conversations/_conversation_full.html.erb
social_stream-0.11.6 base/app/views/conversations/_conversation_full.html.erb
social_stream-base-0.9.20 app/views/conversations/_conversation_full.html.erb