Sha256: 0496645654c7d31556d46694c134bf9d0496afab1afba2e75cdbf6f97752fdcc

Contents?: true

Size: 1.43 KB

Versions: 4

Compression:

Stored size: 1.43 KB

Contents

<% # Clients of this partial must supply the following variables:
   # comment
%>
  
<div id="comment_<%= comment.id.to_s %>_div" class="comment" style="clear:both">                 
  <span id="comment_<%= comment.id.to_s %>_commontator_span" class="comment_commontator">
    <% if commontator.commontator_config.commontator_name_clickable %>
      <%= link_to commontator_name(comment), main_app.polymorphic_path(comment.commontator) %>
    <% else %>
      <%= commontator_name(comment) %>
    <% end %>
    &nbsp;&nbsp;
    <span id="comment_<%= comment.id.to_s %>_timestamp_span" class="comment_timestamp">
      <%= comment_timestamp(comment) %>
    </span>
  </span>
  
  <span id="comment_<%= comment.id.to_s %>_actions_span" class="comment_actions">
    <%= render :partial => 'commontator/comments/actions',
               :locals => { :comment => comment } %>
  </span>
  
  <br clear="all"/>
  
  <span id="comment_<%= comment.id.to_s %>_profile_picture_span" class="comment_profile_picture">
    <%= gravatar_image comment %>
  </span>
  
  <span id="comment_<%= comment.id.to_s %>_votes_span" class="comment_votes">
    <%= render :partial => 'commontator/comments/votes',
               :locals => {:comment => comment} %>
  </span>
  
  <div id="comment_<%= comment.id.to_s %>_body_div" class="comment_body">
    <%= render :partial => 'commontator/comments/body',
               :locals => {:comment => comment} %>
  </div>

</div>

<br clear="all"/>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
commontator-0.3.10 app/views/commontator/comments/_show.html.erb
commontator-0.2.4 app/views/commontator/comments/_show.html.erb
commontator-0.2.0 app/views/commontator/comments/_show.html.erb
commontator-0.1.46 app/views/commontator/comments/_show.html.erb