summaryrefslogtreecommitdiffstats
path: root/main/admin.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-08-25 14:04:23 -0500
committerDan McGee <dan@archlinux.org>2010-08-25 14:04:23 -0500
commit94fe9fc548b5437142ca31239f2663100079ad66 (patch)
treec6f97c83083adf5a321d75d900039cd8e9561b42 /main/admin.py
parentae5483c230d08c65d91eb7cece106b4f13a56232 (diff)
downloadarchweb-94fe9fc548b5437142ca31239f2663100079ad66.tar.gz
archweb-94fe9fc548b5437142ca31239f2663100079ad66.zip
Add more metadata to repo model
Things like the flyspray project ID and SVN repo path should go here rather than being hardcoded in the code. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'main/admin.py')
-rw-r--r--main/admin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/admin.py b/main/admin.py
index ec10d9cd..bfed4599 100644
--- a/main/admin.py
+++ b/main/admin.py
@@ -62,7 +62,7 @@ class MirrorAdmin(admin.ModelAdmin):
]
class RepoAdmin(admin.ModelAdmin):
- list_display = ('name', 'testing')
+ list_display = ('name', 'testing', 'bugs_project', 'svn_root')
list_filter = ('testing',)
search_fields = ('name',)