Sha256: bd664e04e970986fcfbb956dc291450f7ff4aca39d933f27cc4ef7073e1c3ca8

Contents?: true

Size: 766 Bytes

Versions: 1

Compression:

Stored size: 766 Bytes

Contents

<%unless @artist.new_record?%>
  <div class="grid_3 tpush_2">
    <%= link_to "Novo trabalho", new_artist_work_path(@artist)%>
    <br />
    <br />
    <span>trabalhos</span>
      <%@artist.works.each do |work|%>
        <br />
        <%=link_to work.name, edit_artist_work_path(@artist, work)%>
      <% end %>
  </div>
  
  <div class="grid_13 tpush_2">
    <%=form_for @artist, :html => {:multipart => true} do |form|%>
      <%=form.label :name%>
      <%=form.text_field :name%>
  
      <%=form.label :lastname%>
      <%=form.text_field :lastname%>
      <%=form.submit%>
      <br />
      <br />
  
      <%= attachment_progress_container @artist%>
      <%= attachment_for_view @artist%>
      <%= attachment_for_video%>
    <% end %>
  </div>
<% end %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
attachment_magick-0.1.0 test/dummy/app/views/artists/_form.html.erb