Total Complexity | 1 |
Total Lines | 10 |
Duplicated Lines | 0 % |
Changes | 5 | ||
Bugs | 0 | Features | 0 |
1 | # coding: utf-8 |
||
26 | class WeightsCreateView(WeightsMixin, LoginRequiredMixin, UserInstanceMixin, |
||
27 | PaginateMixin, CreateView): |
||
28 | """ |
||
29 | to Create Weights |
||
30 | """ |
||
31 | template_name = "dj_diabetes/weights_form.html" |
||
32 | |||
33 | def get_initial(self): |
||
34 | return {'date_weights': arrow.utcnow().to( |
||
35 | settings.TIME_ZONE).format('YYYY-MM-DD')} |
||
36 | |||
51 |