From f2691054f86ad45e90eb8473569def04ae3d95cd Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Thu, 10 Mar 2016 00:22:20 -0500 Subject: add blog test page --- src/guff/views/ecrs/test.ecr | 167 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 167 insertions(+) create mode 100644 src/guff/views/ecrs/test.ecr (limited to 'src/guff/views/ecrs/test.ecr') diff --git a/src/guff/views/ecrs/test.ecr b/src/guff/views/ecrs/test.ecr new file mode 100644 index 0000000..d36b62c --- /dev/null +++ b/src/guff/views/ecrs/test.ecr @@ -0,0 +1,167 @@ +

<%= 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 %> +
IDCreated AtNameBodyActions
<%= + 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 %> + +
+
+
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ + +
+
-- cgit v1.2.3