Skip to content
Snippets Groups Projects
Commit 034262bf authored by Bastien Abadie's avatar Bastien Abadie
Browse files

Merge branch 'add-repo-field-for-revision-creation' into 'master'

Add a repo field for revision creation

See merge request !1149
parents 16074e40 37c1439f
No related branches found
No related tags found
1 merge request!1149Add a repo field for revision creation
......@@ -52,7 +52,7 @@ class DataFileAdmin(admin.ModelAdmin):
class RevisionAdmin(admin.ModelAdmin):
list_display = ('id', 'hash', 'message', 'author', 'repo')
list_filter = ('repo', )
fields = ('id', 'hash', 'message', 'author')
fields = ('id', 'hash', 'message', 'author', 'repo')
readonly_fields = ('id', )
search_fields = ('hash', 'message', )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment