summaryrefslogtreecommitdiff
path: root/app/views
diff options
context:
space:
mode:
Diffstat (limited to 'app/views')
-rw-r--r--app/views/forums/edit.html.erb4
-rw-r--r--app/views/forums/new.html.erb4
-rw-r--r--app/views/forumthreads/edit.html.erb6
3 files changed, 13 insertions, 1 deletions
diff --git a/app/views/forums/edit.html.erb b/app/views/forums/edit.html.erb
index b1a5a2e..bb4a853 100644
--- a/app/views/forums/edit.html.erb
+++ b/app/views/forums/edit.html.erb
@@ -25,6 +25,10 @@
<td><%= f.label :necro_length, "Necropost warning delay (in days)" %></td>
<td><%= f.number_field :necro_length, placeholder: "Warning Delay (leave blank for no warning)" %></td>
</tr>
+ <tr>
+ <td><%= f.label :disable_deletion, "Disable deletion of threads for non-staff" %></td>
+ <td><%= f.check_box :disable_deletion %></td>
+ </tr>
</table>
<p><%= f.submit "Update Forum", class: "btn blue left" %></p>
<% end %>
diff --git a/app/views/forums/new.html.erb b/app/views/forums/new.html.erb
index 3640fd7..02eacaf 100644
--- a/app/views/forums/new.html.erb
+++ b/app/views/forums/new.html.erb
@@ -25,6 +25,10 @@
<td><%= f.label :necro_length, "Necropost warning delay (in days)" %></td>
<td><%= f.number_field :necro_length, placeholder: "Warning Delay (leave blank for no warning)" %></td>
</tr>
+ <tr>
+ <td><%= f.label :disable_deletion %></td>
+ <td><%= f.check_box :disable_deletion %></td>
+ </tr>
</table>
<%= f.hidden_field :forumgroup_id %>
<p><%= f.submit "Create Forum", class: "btn blue left" %></p>
diff --git a/app/views/forumthreads/edit.html.erb b/app/views/forumthreads/edit.html.erb
index 5667cf2..30c9b08 100644
--- a/app/views/forumthreads/edit.html.erb
+++ b/app/views/forumthreads/edit.html.erb
@@ -11,6 +11,8 @@
end
%>
+<% forum = Forum.find(@thread.forum_id) %>
+
<h1>Edit Thread</h1>
<%= link_to @thread.forum.group, forumgroup_path(@thread.forum.group) %> → <%= link_to @thread.forum, @thread.forum %> → <%= link_to @thread, @thread %> → Edit thread
<%= form_for @thread do |f|%>
@@ -37,5 +39,7 @@
<%= render partial: "md_editor", locals: {name: "forumthread[content]", content: @thread.content} %>
<p><%= f.submit "Update Thread", class: "btn blue left" %></p>
<% end %>
-<%= button_to "Delete Thread", @thread, :method => "delete", data: {confirm: "Delete thread & comments forever?"}, class: "btn red right" %>
+<% if mod? || !forum.disable_deletion %>
+ <%= button_to "Delete Thread", @thread, :method => "delete", data: {confirm: "Delete thread & comments forever?"}, class: "btn red right" %>
+<% end %>
<div class="clear"></div>