mirror of
https://github.com/Eising/kipketer.git
synced 2024-05-11 05:55:17 +00:00
16 lines
341 B
Plaintext
16 lines
341 B
Plaintext
= haml :'admin/nav'
|
|
#configform
|
|
%h1 Deleted templates
|
|
%table.stdtable
|
|
%tr
|
|
%th ID
|
|
%th Name
|
|
%th Action
|
|
- @templates.each do |template|
|
|
%tr
|
|
%td= template.id
|
|
%td= template.name
|
|
%td
|
|
%a(href="/admin/templates/undelete/#{template.id}" class="confirmation")
|
|
Undelete
|