diff options
Diffstat (limited to 'app/views/admin/templates/index.html.erb')
-rw-r--r-- | app/views/admin/templates/index.html.erb | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/app/views/admin/templates/index.html.erb b/app/views/admin/templates/index.html.erb deleted file mode 100644 index 32edfbb..0000000 --- a/app/views/admin/templates/index.html.erb +++ /dev/null @@ -1,23 +0,0 @@ -<h1>Templates</h1> - -<table class="glsamaker-table"> - <tr> - <th>Name</th> - <th>Text</th> - <th>Field</th> - <th>Enabled</th> - </tr> - -<% @templates.each do |admin_template| %> - <tr> - <td><%= link_to admin_template.name, admin_template_path(admin_template) %></td> - <td><tt><%= admin_template.text %></tt></td> - <td><%= admin_template.target %></td> - <td><%= admin_template.enabled %></td> - </tr> -<% end %> -</table> - -<br /> - -<%= link_to 'New Template', new_admin_template_path %> |