Sha256: 9ab406dfa78d17be4f13f9e578c1df3f47c054f8d74923a8ce8651e9de5dfd96

Contents?: true

Size: 586 Bytes

Versions: 4

Compression:

Stored size: 586 Bytes

Contents

<%= form_for @group do |f| %>
  <% f.object._founder = current_subject.permalink %>
  <%= f.hidden_field :_founder %>

  <% if @group.errors.any? %>
    <div id="error_explanation">
      <h2><%= pluralize(@group.errors.count, "error") %> prohibited this group from being saved:</h2>

      <ul>
      <% @group.errors.full_messages.each do |msg| %>
        <li><%= msg %></li>
      <% end %>
      </ul>
    </div>
  <% end %>

  <div class="field">
    <%= f.label :name %><br />
    <%= f.text_field :name %>
  </div>

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
social_stream-0.3.3 app/views/groups/_new.html.erb
social_stream-0.3.2 app/views/groups/_new.html.erb
social_stream-0.3.1 app/views/groups/_new.html.erb
social_stream-0.3.0 app/views/groups/_new.html.erb