<%= h(TITLE) %>

<% [{ id: "draft", name: "Draft Posts", actions: [{ id: "posted", name: "Post", }, { id: "deleted", name: "Delete", }], }, { id: "posted", name: "Posted", actions: [{ id: "draft", name: "Draft", }, { id: "deleted", name: "Delete", }], }, { id: "deleted", name: "Deleted Posts", actions: [{ id: "draft", name: "Draft", }], }].each do |kind| %>

<%= h(kind[:name] as String) %>

<% posts(kind[:id] as String).rows.each do |post| %> <% (kind[:actions] as Array(Hash(Symbol, String))).each do |a| %> <% end %> <% end %>
ID Created At Name Body Actions
<%= h(post.row["post_id"].to_s) %> <%= h(post.row["created_at"].to_s) %> <%= h(post.row["name"].to_s) %> <%= post.row["body"].to_s %>
<% end %>