Changes between Initial Version and Version 1 of Ticket #35909


Ignore:
Timestamp:
Nov 13, 2024, 9:07:56 AM (29 hours ago)
Author:
David Sanders
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #35909 – Description

    initial v1  
    2929    fields = ["foo"]
    3030
    31     def get_context_data(self, **kwargs):
     31    def __init__(self, *args, **kwargs):
     32        super().__init__(*args, **kwargs)
    3233        self.initial["foo"] = 2
    33         return super().get_context_data(**kwargs)
    3434
    3535class BarCreateView(CreateView):
Back to Top