summaryrefslogtreecommitdiffstats
path: root/isotests/admin.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-04-28 20:59:53 +0200
committerDan McGee <dan@archlinux.org>2011-04-28 21:00:54 +0200
commit6516220b17d7987900961863a0b6dec23ac14855 (patch)
tree8988d3233e32c6038f6c069d742e2896673a6b98 /isotests/admin.py
parent1ea5be1a0693d8f24b5d147092fd4a15c7fdd4a7 (diff)
downloadarchweb-6516220b17d7987900961863a0b6dec23ac14855.tar.gz
archweb-6516220b17d7987900961863a0b6dec23ac14855.tar.xz
isotests: update some syntax and ways of doing things
To be more Django-like, Pythonic, or to fit better in the existing archweb project. Also add some created fields to the models, as storing dates for anything is almost always a good idea. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'isotests/admin.py')
-rw-r--r--isotests/admin.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/isotests/admin.py b/isotests/admin.py
index 17303c5..10acaa9 100644
--- a/isotests/admin.py
+++ b/isotests/admin.py
@@ -1,8 +1,7 @@
from django.contrib import admin
-from isotests.models import Iso, Architecture, IsoType, BootType
-from isotests.models import HardwareType, InstallType, Source
-from isotests.models import ClockChoice, Filesystem, Module, Bootloader
+from .models import (Architecture, BootType, Bootloader, ClockChoice,
+ Filesystem, HardwareType, InstallType, Iso, IsoType, Module, Source)
admin.site.register(Iso)
admin.site.register(Architecture)