1
0
مراية لـ https://github.com/postalserver/postal.git تم المزامنة 2026-01-22 07:38:18 +00:00

admin UI for managing ip pools & ip addresses

هذا الالتزام موجود في:
Adam Cooke
2017-04-21 11:09:31 +01:00
الأصل 6eb425eaed
التزام c09c501ef4
11 ملفات معدلة مع 232 إضافات و0 حذوفات

عرض الملف

@@ -0,0 +1,19 @@
= form_for [@ip_pool, @ip_address], :remote => true do |f|
= f.error_messages
%fieldset.fieldSet
.fieldSet__field
= f.label :ipv4, :class => 'fieldSet__label'
.fieldSet__input= f.text_field :ipv4, :autofocus => true, :class => 'input input--text'
.fieldSet__field
= f.label :ipv6, :class => 'fieldSet__label'
.fieldSet__input= f.text_field :ipv6, :class => 'input input--text'
.fieldSet__field
= f.label :hostname, :class => 'fieldSet__label'
.fieldSet__input= f.text_field :hostname, :class => 'input input--text'
.fieldSetSubmit.buttonSet
= f.submit :class => 'button button--positive js-form-submit'
.fieldSetSubmit__delete
- if @ip_address.persisted?
= link_to "Delete IP address", [@ip_pool, @ip_address], :class => 'button button--danger', :method => :delete, :remote => true, :data => {:confirm => "Are you sure you wish to remove this IP from the pool?"}