Aiming to display multiple icons a user checks off when creating a new post in the view.
new.html.erb
<%= check_box_tag 'post[tech_icon][]', 'fa-diamond', checked('fa-diamond'), id: "message_area" %>
<%= check_box_tag 'post[tech_icon][]', 'fa-html5', checked('fa-html5'), id: "message_area" %>
<%= check_box_tag 'post[tech_icon][]', 'fa-css3', checked('fa-css3'), id: "message_area" %>
show.html.view
<% current_user.posts.each do |post| %>
* bellow only renders one checked selections (the last one checked)
<span><i class="fa <%= post.tech_icon %>"></i></span>
* bellow just renders the selected option text on the screen
<%= post.tech_icon %>
<% end %>
*** If you have a better title I can throw up there please let me know.



