mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-10-31 23:22:49 +00:00
rename booleans dnssec_reverse_* to reverse_*
This commit is contained in:
parent
e86a0ff58b
commit
cee0d1188e
4 changed files with 31 additions and 6 deletions
|
@ -231,7 +231,7 @@ class EditIpTypeForm(IpTypeForm):
|
|||
class Meta(IpTypeForm.Meta):
|
||||
fields = ['extension', 'type', 'need_infra', 'domaine_ip_network', 'domaine_ip_netmask',
|
||||
'prefix_v6', 'prefix_v6_length',
|
||||
'vlan', 'dnssec_reverse_v4', 'dnssec_reverse_v6',
|
||||
'vlan', 'reverse_v4', 'reverse_v6',
|
||||
'ouverture_ports']
|
||||
|
||||
|
||||
|
|
25
machines/migrations/0092_auto_20180807_0926.py
Normal file
25
machines/migrations/0092_auto_20180807_0926.py
Normal file
|
@ -0,0 +1,25 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.10.7 on 2018-08-07 07:26
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('machines', '0091_auto_20180806_2310'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RenameField(
|
||||
model_name='iptype',
|
||||
old_name='dnssec_reverse_v4',
|
||||
new_name='reverse_v4',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='iptype',
|
||||
old_name='dnssec_reverse_v6',
|
||||
new_name='reverse_v6',
|
||||
),
|
||||
]
|
|
@ -292,9 +292,9 @@ class IpType(RevMixin, AclMixin, models.Model):
|
|||
],
|
||||
help_text="Netmask for the ipv4 range domain"
|
||||
)
|
||||
dnssec_reverse_v4 = models.BooleanField(
|
||||
reverse_v4 = models.BooleanField(
|
||||
default=False,
|
||||
help_text="Activer DNSSEC sur le reverse DNS IPv4",
|
||||
help_text="Enable reverse DNS for IPv4",
|
||||
)
|
||||
prefix_v6 = models.GenericIPAddressField(
|
||||
protocol='IPv6',
|
||||
|
@ -308,9 +308,9 @@ class IpType(RevMixin, AclMixin, models.Model):
|
|||
MinValueValidator(0)
|
||||
]
|
||||
)
|
||||
dnssec_reverse_v6 = models.BooleanField(
|
||||
reverse_v6 = models.BooleanField(
|
||||
default=False,
|
||||
help_text="Activer DNSSEC sur le reverse DNS IPv6",
|
||||
help_text="Enable reverse DNS for IPv6",
|
||||
)
|
||||
vlan = models.ForeignKey(
|
||||
'Vlan',
|
||||
|
|
|
@ -48,7 +48,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
|||
<td>{{ type.need_infra|tick }}</td>
|
||||
<td>{{ type.domaine_ip_start }}-{{ type.domaine_ip_stop }}{% if type.ip_network %}<b><u> on </b></u>{{ type.ip_network }}{% endif %}</td>
|
||||
<td>{{ type.prefix_v6 }}/{{ type.prefix_v6_length }}</td>
|
||||
<td>{{ type.dnssec_reverse_v4|tick }}/{{ type.dnssec_reverse_v6|tick }}</td>
|
||||
<td>{{ type.reverse_v4|tick }}/{{ type.reverse_v6|tick }}</td>
|
||||
<td>{{ type.vlan }}</td>
|
||||
<td>{{ type.ouverture_ports }}</td>
|
||||
<td class="text-right">
|
||||
|
|
Loading…
Reference in a new issue