21 lines
693 B
Plaintext
21 lines
693 B
Plaintext
<%= link_to @thread.forum.group, forumgroup_path(@thread.forum.group) %> → <%= link_to @thread.forum, @thread.forum %> → New thread
|
|
<h1>New thread</h1>
|
|
<%= form_for @thread do |f|%>
|
|
<table>
|
|
<% if mod? %>
|
|
<tr>
|
|
<td><%= f.label :sticky %></td>
|
|
<td><%= f.check_box :sticky %></td>
|
|
</tr>
|
|
<tr>
|
|
<td><%= f.label :locked %></td>
|
|
<td><%= f.check_box :locked %></td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
<%= f.text_field :title, placeholder: "Title" %>
|
|
<%= render partial: "mdhelp" %>
|
|
<%= f.text_area :content, placeholder: "Text" %>
|
|
<%= f.hidden_field :forum_id %>
|
|
<p><%= f.submit "Create thread", class: "btn blue" %></p>
|
|
<% end %> |