8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-09-12 01:03:09 +00:00

Classement des chambres par orde alphabétique

This commit is contained in:
guimoz 2017-09-05 14:43:40 +02:00 committed by root
parent 84617e2460
commit 99c04b9990
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,24 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.7 on 2017-09-05 12:42
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('topologie', '0026_auto_20170902_1245'),
]
operations = [
migrations.AlterModelOptions(
name='room',
options={'ordering': ['name']},
),
migrations.AlterField(
model_name='port',
name='radius',
field=models.CharField(choices=[('NO', 'NO'), ('STRICT', 'STRICT'), ('BLOQ', 'BLOQ'), ('COMMON', 'COMMON')], default='NO', max_length=32),
),
]

View file

@ -135,6 +135,9 @@ class Room(models.Model):
name = models.CharField(max_length=255, unique=True)
details = models.CharField(max_length=255, blank=True)
class Meta:
ordering = ['name']
def __str__(self):
return str(self.name)