mirror of
https://github.com/Eising/kipketer.git
synced 2024-05-11 05:55:17 +00:00
20 lines
410 B
Plaintext
20 lines
410 B
Plaintext
= haml :'admin/nav'
|
|
#configform
|
|
%h1 Deleted tests
|
|
%table.stdtable
|
|
%tr
|
|
%th ID
|
|
%th CRID
|
|
%th Customer
|
|
%th Location
|
|
%th Action
|
|
- @tests.each do |test|
|
|
%tr
|
|
%td= test.id
|
|
%td= test.crid
|
|
%td= test.customer
|
|
%td= test.location
|
|
%td
|
|
%a(href="/admin/scheduling/undelete/#{test.id}" class="confirmation")
|
|
Undelete
|