Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[refs #112] Adds a new field to the Inspections model. #138

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[refs #112] Adds image_url and property_id to admin list display
vrocha committed Jun 17, 2014
commit 1ff4a0fe46b6abc1dfb44c1f8a63b79e345f2264
2 changes: 1 addition & 1 deletion inspections/admin.py
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@
class EstablishmentAdmin(LeafletGeoAdmin):
search_fields = ('name', 'address')
list_display = ('id', 'name', 'type',
'county', 'state_id', 'point', 'update_date')
'county', 'state_id', 'image_url', 'property_id', 'point', 'update_date')
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we shorten image_url in some way on the admin list? I think it might look long on the listing page.

list_filter = ('county', 'postal_code')
ordering = ('-update_date',)