Changes between Initial Version and Version 1 of Ticket #28716


Ignore:
Timestamp:
Oct 16, 2017, 5:39:09 PM (7 years ago)
Author:
Patrick Kyne
Comment:

I've tested it with both the search_fields as:

search_fields = ['question_text']

-and-

search_fields = ['question_text', 'pub_date']

to see if there were any difference or error thrown. No difference. No search field is displayed, and no error is thrown.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28716 – Description

    initial v1  
    2727    list_filter = ['pub_date']
    2828
    29     search_fields = ['question_text', 'pub_date']
     29    search_fields = ['question_text']
    3030
    3131admin.site.register(Question, QuestionAdmin)
Back to Top