Changes between Initial Version and Version 4 of Ticket #33729
- Timestamp:
- May 22, 2022, 10:16:32 AM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33729
- Property Resolution → invalid
- Property Status new → closed
- Property Summary [BUG] AutocompleteSelect widget broken after moving from django 2.2 to django 3.2 → AutocompleteSelect widget broken after moving from django 2.2 to django 3.2
-
Ticket #33729 – Description
initial v4 96 96 97 97 class Question(models.Model): 98 uuid = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False) 98 99 question_text = models.CharField(max_length=200) 99 100 pub_date = models.DateTimeField('date published') … … 118 119 {% endblock %} 119 120 }}} 121 urls.py 122 {{{ 123 from django.contrib.admin.views.decorators import staff_member_required 124 from django.urls import path 125 126 from polls.views import QuestionExportView 127 128 app_name = "question_exports" 129 130 131 urlpatterns = [ 132 path("admin/question/", staff_member_required(QuestionExportView.as_view()), name="question"), 133 path('admin/', admin.site.urls), 134 ] 135 136 }}} 120 137 121 138 How can I approach this issue? Any help would be appreciated :)!