replace skeleton files by previous version; apply obvious fixes
This commit is contained in:
parent
1f5cbcd6d1
commit
2133be2436
35 changed files with 1086 additions and 39 deletions
43
app/views/suppliers/show.haml
Normal file
43
app/views/suppliers/show.haml
Normal file
|
@ -0,0 +1,43 @@
|
|||
%h1 Lieferantin anzeigen
|
||||
%p
|
||||
Name:
|
||||
%br/
|
||||
%strong= @supplier.name
|
||||
%p
|
||||
Adresse:
|
||||
%br/
|
||||
%strong= @supplier.address
|
||||
%p
|
||||
Telefon 1:
|
||||
%br/
|
||||
%strong= @supplier.phone
|
||||
%p
|
||||
Telefon 2:
|
||||
%br/
|
||||
%strong= @supplier.phone2
|
||||
%p
|
||||
Fax:
|
||||
%br/
|
||||
%strong= @supplier.fax
|
||||
%p
|
||||
E-Mail:
|
||||
%br/
|
||||
%strong= @supplier.email
|
||||
%p
|
||||
Webseite:
|
||||
%br/
|
||||
%strong= @supplier.url
|
||||
%p
|
||||
Liefertage:
|
||||
%br/
|
||||
%strong= @supplier.delivery_days
|
||||
%p
|
||||
Notiz:
|
||||
%br/
|
||||
%strong= @supplier.note
|
||||
|
||||
= link_to 'Bearbeiten', edit_supplier_path(@supplier)
|
||||
|
|
||||
= link_to 'Löschen', supplier_path(@supplier), :confirm => 'Bist du sicher?', :method => :delete
|
||||
|
|
||||
= link_to 'Zurück', suppliers_path
|
Loading…
Add table
Add a link
Reference in a new issue