|
@ -1062,6 +1062,11 @@ class DocumentoAcessorioCrud(MasterDetailCrud): |
|
|
def __init__(self, **kwargs): |
|
|
def __init__(self, **kwargs): |
|
|
super(MasterDetailCrud.CreateView, self).__init__(**kwargs) |
|
|
super(MasterDetailCrud.CreateView, self).__init__(**kwargs) |
|
|
|
|
|
|
|
|
|
|
|
def get_initial(self): |
|
|
|
|
|
self.initial['data'] = datetime.now().date() |
|
|
|
|
|
|
|
|
|
|
|
return self.initial |
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs): |
|
|
def get_context_data(self, **kwargs): |
|
|
context = super( |
|
|
context = super( |
|
|
MasterDetailCrud.CreateView, self).get_context_data(**kwargs) |
|
|
MasterDetailCrud.CreateView, self).get_context_data(**kwargs) |
|
|