From 887cd473bbcad315ee2d7522f95f0641c82ed6d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre-Elliott=20B=C3=A9cue?= Date: Thu, 9 Aug 2018 16:56:06 +0200 Subject: [PATCH] Affiche les champs TXT et rend field1 facultatif. --- .../migrations/0094_auto_20180809_1652.py | 20 +++++++++++++++++++ machines/models.py | 2 +- machines/templates/machines/aff_txt.html | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) create mode 100644 machines/migrations/0094_auto_20180809_1652.py diff --git a/machines/migrations/0094_auto_20180809_1652.py b/machines/migrations/0094_auto_20180809_1652.py new file mode 100644 index 00000000..7121cfde --- /dev/null +++ b/machines/migrations/0094_auto_20180809_1652.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.7 on 2018-08-09 14:52 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('machines', '0093_auto_20180807_1115'), + ] + + operations = [ + migrations.AlterField( + model_name='txt', + name='field1', + field=models.CharField(blank=True, max_length=255), + ), + ] diff --git a/machines/models.py b/machines/models.py index 2e77f25c..22c8126e 100644 --- a/machines/models.py +++ b/machines/models.py @@ -786,7 +786,7 @@ class Txt(RevMixin, AclMixin, models.Model): PRETTY_NAME = "Enregistrement TXT" zone = models.ForeignKey('Extension', on_delete=models.PROTECT) - field1 = models.CharField(max_length=255) + field1 = models.CharField(max_length=255, blank=True) field2 = models.TextField(max_length=2047) class Meta: diff --git a/machines/templates/machines/aff_txt.html b/machines/templates/machines/aff_txt.html index e961d7a9..27d78d11 100644 --- a/machines/templates/machines/aff_txt.html +++ b/machines/templates/machines/aff_txt.html @@ -34,7 +34,7 @@ with this program; if not, write to the Free Software Foundation, Inc., - {% for txt in text_list %} + {% for txt in txt_list %} {{ txt.zone }} {{ txt.dns_entry }}