diff options
author | Egor Yurtaev <yurtaev@users.noreply.github.com> | 2016-05-05 16:15:16 +0800 |
---|---|---|
committer | Egor Yurtaev <yurtaev@users.noreply.github.com> | 2016-05-05 16:15:16 +0800 |
commit | 3f12d696185359743fcb51e43a2ef825e5512c01 (patch) | |
tree | 68905137e1022da607541c6ca9dff97c896a4a2f | |
parent | 4a3f9ec57675bdf796ef2ee599c69283fd423aed (diff) | |
parent | 1a68937ef42a06965d6f102c057138479cc99304 (diff) | |
download | omaha-server-3f12d696185359743fcb51e43a2ef825e5512c01.zip omaha-server-3f12d696185359743fcb51e43a2ef825e5512c01.tar.gz omaha-server-3f12d696185359743fcb51e43a2ef825e5512c01.tar.bz2 |
Merge pull request #177 from Crystalnix/feature/search-by-instrumentation-file
Search by instrumentation file
-rw-r--r-- | omaha_server/crash/admin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/omaha_server/crash/admin.py b/omaha_server/crash/admin.py index 6e3aa10..e45f1f1 100644 --- a/omaha_server/crash/admin.py +++ b/omaha_server/crash/admin.py @@ -102,7 +102,7 @@ class CrashAdmin(admin.ModelAdmin): list_select_related = ['crash_description'] list_display_links = ('id', 'created', 'modified', 'signature', 'appid', 'userid', 'os_field', 'cpu_architecture_field',) list_filter = (('id', TextInputFilter,), 'created', CrashArchiveFilter) - search_fields = ('appid', 'userid',) + search_fields = ('appid', 'userid', 'archive',) form = CrashFrom readonly_fields = ('sentry_link_field',) exclude = ('groupid', 'eventid', ) |