Поправить модель Site
Удалить так как не используеться
reshow_enabled = models.BooleanField(_('Re-show enabled'), default=True)
showing_frequency = models.PositiveSmallIntegerField(
_('Showing frequency'), default=3
)
view_type = models.CharField(
_('View type'),
max_length=10,
choices=ViewTypes.choices,
default=ViewTypes.BLOCK,
)
is_published
- доделать логику. Если сайт не опубликован, мы не должны возвращять форму,
поправить запрос вот тут https://gitlab.prozorro.sale/prozorro-sale/survey/-/blob/master/src/survey/forms/views.py?ref_type=heads#L63
Edited by Pavel Kuzmenko