Sha256: c1cbe77c6d54403b818a034004bf2839c0c669587c83fa43b7b870895c348721

Contents?: true

Size: 1007 Bytes

Versions: 10

Compression:

Stored size: 1007 Bytes

Contents

<%= form_for @messageboard do |f| %>
  <div id="setup-container">
    <p class="setup-overview-text">
      These will be the settings and permissions for your first thredded
      messageboard.
    </p>

    <dl>
      <dt><%= f.label :name %></dt>
      <dd><%= f.text_field :name %></dd>

      <dt><%= f.label :description %></dt>
      <dd><%= f.text_field :description %></dd>

      <dt><%= f.label :security %></dt>
      <dd>
        <%= f.select :security, [:private, :public, :logged_in] %>
        <p class="setup-explanation-text">
          This will set the visibility of your messageboard to the public
          members.
        </p>
      </dd>

      <dt><%= f.label :posting_permission %></dt>
      <dd>
        <%= f.select :posting_permission, [:members, :logged_in, :anonymous] %>
        <p class="setup-explanation-text">
          The required minimum permissions to post in your messageboard.
        </p>
      </dd>
    </dl>

    <%= f.submit 'Continue' %>
  </div>
<% end %>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
thredded-0.0.12 app/views/thredded/setups/_form.html.erb
thredded-0.0.10 app/views/thredded/setups/_form.html.erb
thredded-0.0.9 app/views/thredded/setups/_form.html.erb
thredded-0.0.8 app/views/thredded/setups/_form.html.erb
thredded-0.0.7 app/views/thredded/setups/_form.html.erb
thredded-0.0.6 app/views/thredded/setups/_form.html.erb
thredded-0.0.5 app/views/thredded/setups/_form.html.erb
thredded-0.0.4 app/views/thredded/setups/_form.html.erb
thredded-0.0.3 app/views/thredded/setups/_form.html.erb
thredded-0.0.1 app/views/thredded/setups/_form.html.erb