Sha256: f2a21768c5939e8848514e2c04fbded5a78fb79ea8c9470b8c4b54a6a2ee71c2

Contents?: true

Size: 765 Bytes

Versions: 1

Compression:

Stored size: 765 Bytes

Contents

<% content_for :tabbar_title do %>
  <%= @comment.new_record? ? "New" : "Edit" %> Comment
<% end %>

<div class="form-panel clearfix">
  <ul class="breadcrumbs">
    <li><%= link_to @project.name, [@organization, @project] %></li>
    <li><%= link_to "DummyApp", [@organization, @project, :finishes] %></li>
    <li><%= link_to @finish.name, [@organization, @project, @finish] %></li>
    <% if @comment.new_record? -%>
      <li class="current"><a href="#">New Comment</a></li>
    <% else -%>
      <li class="current"><a href="#">Edit Comment</a></li>
    <% end -%>
  </ul>

  <%= simple_form_for [@organization, @project, @finish, @comment] do |f| %>
    <%= f.input :body %>

    <%= f.button :submit, class: "small button radius right" %>
  <% end %>
</div>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
self_systeem-0.1.0 test/dummy_app/app/views/shared/comments/form.html.erb