Sha256: 5106406e54807f05b9be06560b8fc6a1d2083ec31760a266bdfdf5ed0794afd7

Contents?: true

Size: 526 Bytes

Versions: 3

Compression:

Stored size: 526 Bytes

Contents

<h1><%= @user.name %>'s <%= Conversations::Conversation.model_name.human %></h1>

<ul>
  <% for conversation in @conversations do %>
    <li class="<%= conversation.read? ? 'read' : 'unread' %>">
      <%= conversation.participants %>
      -
      <%= link_to conversation.subject, user_conversation_path(conversation.user, conversation) %>
      -
      <%=l conversation.created_at, :format => :short %>
    </li>
  <% end %>
</ul>

<%= link_to t('conversation.index.new_conversation'), new_user_conversation_path(@user) %>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
conversations-0.0.2.2 app/views/conversations/user_conversations/index.html.erb
conversations-0.0.2.1 app/views/conversations/user_conversations/index.html.erb
conversations-0.0.2 app/views/conversations/user_conversations/index.html.erb