- <%= table_for @news_updates, {class: "striped", width: "100%"} do |t| %>
+ <%= table_for @news_updates, width: "100%" do |t| %>
<% t.column "Creator" do |news_update| %>
<%= link_to_user news_update.creator %>
<% end %>
diff --git a/app/views/pools/index.html.erb b/app/views/pools/index.html.erb
index 29b798c28..c5955a8df 100644
--- a/app/views/pools/index.html.erb
+++ b/app/views/pools/index.html.erb
@@ -2,7 +2,7 @@
<%= render "search", :path => pools_path %>
- <%= table_for @pools, {class: "striped", width: "100%"} do |t| %>
+ <%= table_for @pools, width: "100%" do |t| %>
<% t.column nil, {width: "5%"} %>
<% t.column "Name", {width: "60%"} do |pool| %>
<%= link_to pool.pretty_name, pool_path(pool) %>
diff --git a/app/views/post_appeals/index.html.erb b/app/views/post_appeals/index.html.erb
index 6d99b37b6..a1e7853bb 100644
--- a/app/views/post_appeals/index.html.erb
+++ b/app/views/post_appeals/index.html.erb
@@ -4,7 +4,7 @@
<%= render "search" %>
<%= render "posts/partials/common/inline_blacklist" %>
- <%= table_for @post_appeals, {class: "striped", width: "100%"} do |t| %>
+ <%= table_for @post_appeals, width: "100%" do |t| %>
<% t.column "Post", {width: "1%"} do |post_appeal| %>
<%= PostPresenter.preview(post_appeal.post, :tags => "status:any") %>
<% end %>
diff --git a/app/views/post_approvals/index.html.erb b/app/views/post_approvals/index.html.erb
index 83e667b25..8955aeff5 100644
--- a/app/views/post_approvals/index.html.erb
+++ b/app/views/post_approvals/index.html.erb
@@ -9,7 +9,7 @@
<%= f.submit "Search" %>
<% end %>
- <%= table_for @post_approvals, {class: "striped", width: "100%"} do |t| %>
+ <%= table_for @post_approvals, width: "100%" do |t| %>
<% t.column "Post", {width: "1%"} do |post_approval| %>
<%= PostPresenter.preview(post_approval.post, :tags => "status:any") %>
<% end %>
diff --git a/app/views/post_flags/index.html.erb b/app/views/post_flags/index.html.erb
index 2b66c1168..c20847856 100644
--- a/app/views/post_flags/index.html.erb
+++ b/app/views/post_flags/index.html.erb
@@ -4,7 +4,7 @@
<%= render "search" %>
<%= render "posts/partials/common/inline_blacklist" %>
- <%= table_for @post_flags, {class: "striped", width: "100%"} do |t| %>
+ <%= table_for @post_flags, width: "100%" do |t| %>
<% t.column "Post", {width: "1%"} do |post_flag| %>
<%= PostPresenter.preview(post_flag.post, :tags => "status:any") %>
<% end %>
diff --git a/app/views/tag_aliases/_listing.html.erb b/app/views/tag_aliases/_listing.html.erb
index 0b5a405db..9a69d3a01 100644
--- a/app/views/tag_aliases/_listing.html.erb
+++ b/app/views/tag_aliases/_listing.html.erb
@@ -1,4 +1,4 @@
-<%= table_for tag_aliases, {class: "striped", width: "100%"} do |t| %>
+<%= table_for tag_aliases, width: "100%" do |t| %>
<% t.column "From", {width: "25%"} do |tag_alias| %>
<%= link_to tag_alias.antecedent_name, posts_path(:tags => tag_alias.antecedent_name) %> <%= tag_alias.antecedent_tag.post_count rescue 0 %>
<% end %>
diff --git a/app/views/tag_implications/_listing.html.erb b/app/views/tag_implications/_listing.html.erb
index 1b0905869..5fd7fc768 100644
--- a/app/views/tag_implications/_listing.html.erb
+++ b/app/views/tag_implications/_listing.html.erb
@@ -1,4 +1,4 @@
-<%= table_for tag_implications, {class: "striped", width: "100%"} do |t| %>
+<%= table_for tag_implications, width: "100%" do |t| %>
<% t.column "From", {width: "25%"} do |tag_implication| %>
<%= link_to tag_implication.antecedent_name, posts_path(:tags => tag_implication.antecedent_name) %> <%= tag_implication.antecedent_tag.post_count rescue 0 %>
<% end %>
diff --git a/app/views/user_name_change_requests/index.html.erb b/app/views/user_name_change_requests/index.html.erb
index 7e6d7c74d..b130ef42d 100644
--- a/app/views/user_name_change_requests/index.html.erb
+++ b/app/views/user_name_change_requests/index.html.erb
@@ -2,7 +2,7 @@
Name Change Requests
- <%= table_for @change_requests, {class: "striped", width: "100%"} do |t| %>
+ <%= table_for @change_requests, width: "100%" do |t| %>
<% t.column "User" do |change_request| %>
<%= link_to_user change_request.user %>
<% end %>
diff --git a/app/views/users/index.html.erb b/app/views/users/index.html.erb
index 4426ecfb9..dff758873 100644
--- a/app/views/users/index.html.erb
+++ b/app/views/users/index.html.erb
@@ -2,7 +2,7 @@
Users
- <%= table_for @users, {class: "striped", width: "100%"} do |t| %>
+ <%= table_for @users, width: "100%" do |t| %>
<% t.column "" do |user| %>
<% if CurrentUser.is_admin? %>
<%= link_to "Edit", edit_admin_user_path(user) %>
diff --git a/app/views/wiki_page_versions/_global_listing.html.erb b/app/views/wiki_page_versions/_global_listing.html.erb
index 9b6cc3a1e..b349cc8f9 100644
--- a/app/views/wiki_page_versions/_global_listing.html.erb
+++ b/app/views/wiki_page_versions/_global_listing.html.erb
@@ -1,6 +1,6 @@
- <%= table_for @wiki_page_versions, {class: "striped", width: "100%"} do |t| %>
+ <%= table_for @wiki_page_versions, width: "100%" do |t| %>
<% t.column "", {width: "3%"} do |wiki_page_version| %>
<%= link_to_if wiki_page_version.previous.present?, "diff", diff_wiki_page_versions_path(otherpage: wiki_page_version.previous.try(:id), thispage: wiki_page_version.id) %>
<% end %>
diff --git a/app/views/wiki_page_versions/_page_listing.html.erb b/app/views/wiki_page_versions/_page_listing.html.erb
index d5f220236..94d9d31f1 100644
--- a/app/views/wiki_page_versions/_page_listing.html.erb
+++ b/app/views/wiki_page_versions/_page_listing.html.erb
@@ -1,7 +1,7 @@
<%= form_tag(diff_wiki_page_versions_path, :method => :get) do %>
- <%= table_for @wiki_page_versions, {class: "striped", width: "100%"} do |t| %>
+ <%= table_for @wiki_page_versions, width: "100%" do |t| %>
<% t.column "", {width: "3%"} do |wiki_page_version, i| %>
<% if i < @wiki_page_versions.length - 1 %>
<%= link_to "diff", diff_wiki_page_versions_path(:otherpage => wiki_page_version.id, :thispage => @wiki_page_versions[i + 1].id) %>
diff --git a/app/views/wiki_pages/index.html.erb b/app/views/wiki_pages/index.html.erb
index 8a6b5e798..9033b7c1f 100644
--- a/app/views/wiki_pages/index.html.erb
+++ b/app/views/wiki_pages/index.html.erb
@@ -3,7 +3,7 @@
<% content_for(:content) do %>
Wiki
- <%= table_for @wiki_pages, {class: "striped", width: "100%"} do |t| %>
+ <%= table_for @wiki_pages, width: "100%" do |t| %>
<% t.column "Title" do |wiki_page| %>
<%= link_to_wiki wiki_page.title %>
<% end %>