From 5d7cd9615840341d2ccab1d8b7acfd49d6a5b743 Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Thu, 10 Mar 2016 09:25:07 -0500 Subject: rename test to test-blog --- src/guff/views/ecrs/test.ecr | 167 ------------------------------------------- 1 file changed, 167 deletions(-) delete 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 deleted file mode 100644 index d36b62c..0000000 --- a/src/guff/views/ecrs/test.ecr +++ /dev/null @@ -1,167 +0,0 @@ -

<%= 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