mirror of
https://github.com/internetee/registry.git
synced 2025-07-23 11:16:00 +02:00
16 lines
464 B
Text
16 lines
464 B
Text
= form_for([:admin, @domain], html: { class: 'form-horizontal' }) do |f|
|
|
= render 'shared/errors', object: @domain
|
|
- unless @domain.parent_valid?
|
|
%hr
|
|
.row
|
|
.col-md-8
|
|
.tab-content{style:'margin-top: 20px;'}
|
|
#general-tab.tab-pane.active
|
|
= render 'admin/domains/form_partials/statuses', f: f
|
|
.row
|
|
.col-md-8.text-right
|
|
= button_tag(t('save'), class: 'btn btn-primary')
|
|
|
|
:coffee
|
|
$ ->
|
|
$("#tabs a:first").tab "show"
|