table builder: add 'striped' css class by default.

This commit is contained in:
evazion
2020-01-06 02:12:04 -06:00
parent abe7f086b6
commit f1528e0fae
20 changed files with 22 additions and 22 deletions

View File

@@ -1,7 +1,7 @@
<div id="c-forum-posts">
<div id="a-index">
<%= table_for @forum_posts, {class: "striped", width: "100%"} do |t| %>
<%= table_for @forum_posts, width: "100%" do |t| %>
<% t.column "Topic", nil, {class: "forum-post-topic-title"} do |forum_post| %>
<%= link_to forum_post.topic.title, forum_topic_path(forum_post.topic) %>
<% end %>