1
0
مراية لـ https://github.com/postalserver/postal.git تم المزامنة 2025-11-30 21:32:30 +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?"}

عرض الملف

@@ -0,0 +1,17 @@
- page_title << "IP Pools"
- page_title << @ip_pool.name
- page_title << "Edit IP address"
.pageHeader
%h1.pageHeader__title
%span.pageHeader__titlePrevious
= link_to "IP Pools", :ip_pools
&rarr;
= @ip_pool.name
&rarr;
Edit
&rarr;
Edit IP address
.pageContent.pageContent--compact
= render 'form'

عرض الملف

@@ -0,0 +1,17 @@
- page_title << "IP Pools"
- page_title << @ip_pool.name
- page_title << "Add new IP address"
.pageHeader
%h1.pageHeader__title
%span.pageHeader__titlePrevious
= link_to "IP Pools", :ip_pools
&rarr;
= @ip_pool.name
&rarr;
Edit
&rarr;
Add new IP address
.pageContent.pageContent--compact
= render 'form'