Sha256: 79e809deec56dad2ffea9379b60580448109f7648ab904a362915d67c17aaeb5

Contents?: true

Size: 952 Bytes

Versions: 69

Compression:

Stored size: 952 Bytes

Contents

<%= form_for(@produce) do |f| -%>
  <%= f.error_messages -%>

  <div class="field">
    <%= f.label t('activerecord.models.agent') -%><br />
    <%- if @produce.agent -%>
      <%= link_to @produce.agent.full_name, @produce.agent -%>
      <%= f.hidden_field :agent_id -%>
    <%- else -%>
      <%= f.text_field :agent_id -%>
    <%- end -%>
  </div>

  <div class="field">
    <%= f.label t('activerecord.models.manifestation') -%><br />
    <%- if @produce.manifestation -%>
      <%= link_to @produce.manifestation.original_title, @produce.manifestation -%>
      <%= f.hidden_field :manifestation_id -%>
    <%- else -%>
      <%= f.text_field :manifestation_id -%>
    <%- end -%>
  </div>

  <div class="field">
    <%= f.label t('activerecord.models.produce_type') -%><br />
    <%= f.select :produce_type_id, @produce_types.map{|p| [p.display_name.localize, p.id]} %>
  </div>

  <div class="actions">
    <%= f.submit %>
  </div>
<%- end -%>

Version data entries

69 entries across 68 versions & 2 rubygems

Version Path
enju_biblio-0.1.0.pre71 app/views/produces/_form.html.erb
enju_biblio-0.1.0.pre70 app/views/produces/_form.html.erb
enju_biblio-0.1.0.pre69 app/views/produces/_form.html.erb
enju_biblio-0.1.0.pre68 app/views/produces/_form.html.erb
enju_biblio-0.1.0.pre67 app/views/produces/_form.html.erb
enju_biblio-0.1.0.pre66 app/views/produces/_form.html.erb
enju_biblio-0.1.0.pre65 app/views/produces/_form.html.erb
enju_biblio-0.1.0.pre64 app/views/produces/_form.html.erb
enju_biblio-0.1.0.pre63 app/views/produces/_form.html.erb
enju_biblio-0.1.0.pre62 app/views/produces/_form.html.erb
enju_biblio-0.1.0.pre61 app/views/produces/_form.html.erb
enju_biblio-0.1.0.pre60 app/views/produces/_form.html.erb
enju_biblio-0.1.0.pre59 app/views/produces/_form.html.erb
enju_biblio-0.1.0.pre58 app/views/produces/_form.html.erb
enju_biblio-0.1.0.pre57 app/views/produces/_form.html.erb
enju_biblio-0.1.0.pre56 app/views/produces/_form.html.erb
enju_biblio-0.1.0.pre55 app/views/produces/_form.html.erb
enju_biblio-0.1.0.pre54 app/views/produces/_form.html.erb
enju_biblio-0.1.0.pre53 app/views/produces/_form.html.erb
enju_biblio-0.1.0.pre52 app/views/produces/_form.html.erb