Skip to content

Commit

Permalink
Merge pull request #3681 from rtfd/project-slug-admin
Browse files Browse the repository at this point in the history
Show the project slug in the project admin (to make it more explicit what project is what)
  • Loading branch information
davidfischer committed Feb 26, 2018
2 parents 0e1112f + 17be1c1 commit 354ab83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion readthedocs/projects/admin.py
Expand Up @@ -102,7 +102,7 @@ class ProjectAdmin(GuardedModelAdmin):
"""Project model admin view."""

prepopulated_fields = {'slug': ('name',)}
list_display = ('name', 'repo', 'repo_type', 'allow_comments', 'featured', 'theme')
list_display = ('name', 'slug', 'repo', 'repo_type', 'allow_comments', 'featured', 'theme')
list_filter = ('repo_type', 'allow_comments', 'featured', 'privacy_level',
'documentation_type', 'programming_language',
ProjectOwnerBannedFilter)
Expand Down

0 comments on commit 354ab83

Please sign in to comment.