This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
redstoner.com/app/views/forumthreads/new.html.erb
2014-02-01 00:56:50 +01:00

17 lines
586 B
Plaintext

<%= link_to @forum.group, forumgroup_path(@forum.group) %> → <%= link_to @forum, @forum %> → New thread
<h1>New thread</h1>
<%= simple_form_for @thread do |f|%>
<div id="form_labels">
<%= f.label :title %>
<%= f.label :content, "Text" %>
</div>
<div id="form_inputs">
<%= f.input :title, placeholder: "Title" %>
<%= f.input :content, placeholder: "Text" %>
</div>
<% if mod? %>
<%= f.input :sticky %> <%= f.label :sticky %>
<%= f.input :locked %> <%= f.label :locked %>
<% end %>
<%= f.submit "Create forum", class: "btn blue" %><br>
<% end %>