Changes between Initial Version and Version 4 of Ticket #33729


Ignore:
Timestamp:
May 22, 2022, 10:16:32 AM (2 years ago)
Author:
exo
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #33729

    • Property Resolutioninvalid
    • Property Status newclosed
    • Property Summary [BUG] AutocompleteSelect widget broken after moving from django 2.2 to django 3.2AutocompleteSelect widget broken after moving from django 2.2 to django 3.2
  • Ticket #33729 – Description

    initial v4  
    9696
    9797    class Question(models.Model):
     98        uuid = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)
    9899        question_text = models.CharField(max_length=200)
    99100        pub_date = models.DateTimeField('date published')
     
    118119    {% endblock %}
    119120}}}
     121urls.py
     122{{{
     123from django.contrib.admin.views.decorators import staff_member_required
     124from django.urls import path
     125
     126from polls.views import QuestionExportView
     127
     128app_name = "question_exports"
     129
     130
     131urlpatterns = [
     132    path("admin/question/", staff_member_required(QuestionExportView.as_view()), name="question"),
     133    path('admin/', admin.site.urls),
     134]
     135
     136}}}
    120137
    121138How can I approach this issue? Any help would be appreciated :)!
Back to Top