in the default index.html.erb template there didn't display id ,created_at,updated_at columns
so now i want to display them by change the template
but i didn't find the meta variant,here is the part of the original index.html.erb template file code,it use a attributes
to display all user defined column,but didn't show default columns,dose someone know how to add this 3 columns
<% for attribute in attributes -%>
<div class="field">
<%%= f.label :<%= attribute.name %> %><br />
<%%= f.<%= attribute.field_type %> :<%= attribute.name%> %>
</div>
<% end -%>