Changes between Version 1 and Version 2 of Ticket #30455, comment 4


Ignore:
Timestamp:
May 7, 2019, 2:54:09 AM (5 years ago)
Author:
Mariusz Felisiak

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #30455, comment 4

    v1 v2  
    1 
     1{{{
    22class BillingForm(forms.ModelForm):
    33
     
    2323    def dispatch(self, request, *args, **kwargs):
    2424        return super().dispatch(request, *args, **kwargs)
     25}}}
    2526
    2627I 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.
Back to Top