Changes between Version 1 and Version 2 of Ticket #30455, comment 4
- Timestamp:
- May 7, 2019, 2:54:09 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #30455, comment 4
v1 v2 1 1 {{{ 2 2 class BillingForm(forms.ModelForm): 3 3 … … 23 23 def dispatch(self, request, *args, **kwargs): 24 24 return super().dispatch(request, *args, **kwargs) 25 }}} 25 26 26 27 I have 2000 rows in Account table and 4-5K rows in Billing table. Try to render the above example form with number of rows that I have mentioned and see the response time. You can use model_mummy for generate dummy data.