Sha256: bda314e3c7f355ef1ee941092cfe92495006c2b8129d1d82e4688496129f54db

Contents?: true

Size: 627 Bytes

Versions: 2

Compression:

Stored size: 627 Bytes

Contents

<%= form_for following, url: federails.client_following_url do |f| %>
  <% if following.errors.any? %>
    <div class="error_explanation">
      <h2><%= pluralize(following.errors.count, 'error') %> prohibited this following from being saved:</h2>
      <ul>
        <% following.errors.full_messages.each do |message| %>
          <li><%= message %></li>
        <% end %>
      </ul>
    </div>
  <% end %>

  <div class="field">
    <%= f.label :target_actor %>
    <%= f.collection_select :target_actor_id, Federails::Actor.all, :id, :name %>
  </div>

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
federails-0.2.0 app/views/federails/client/followings/_form.html.erb
federails-0.1.0 app/views/federails/client/followings/_form.html.erb