mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 06:31:44 +00:00
15 lines
348 B
Text
15 lines
348 B
Text
|
.row
|
||
|
.col
|
||
|
= render 'layouts/breadcrumb',
|
||
|
crumbs: [ link_to(t('sites.index'), sites_path), t('.title') ]
|
||
|
.row
|
||
|
.col
|
||
|
%h1= t('.title')
|
||
|
|
||
|
= form_for @site do |f|
|
||
|
.form-group
|
||
|
= f.label :name
|
||
|
= f.text_field :name, class: 'form-control'
|
||
|
.form-group
|
||
|
= f.submit t('.submit'), class: 'btn btn-success'
|