18 lines
796 B
Text
18 lines
796 B
Text
= form_for @application_setting, url: admin_application_settings_path, html: { class: 'fieldset-form' } do |f|
|
|
= form_errors(@application_setting)
|
|
|
|
%fieldset
|
|
.form-group
|
|
.form-check
|
|
= f.check_box :plantuml_enabled, class: 'form-check-input'
|
|
= f.label :plantuml_enabled, class: 'form-check-label' do
|
|
Enable PlantUML
|
|
.form-group
|
|
= f.label :plantuml_url, 'PlantUML URL', class: 'label-light'
|
|
= f.text_field :plantuml_url, class: 'form-control', placeholder: 'http://gitlab.your-plantuml-instance.com:8080'
|
|
.form-text.text-muted
|
|
Allow rendering of
|
|
= link_to "PlantUML", "http://plantuml.com"
|
|
diagrams in Asciidoc documents using an external PlantUML service.
|
|
|
|
= f.submit 'Save changes', class: "btn btn-success"
|