django html checkbox if condition chexked

Solutions on MaxInterview for django html checkbox if condition chexked by the best coders in the world

showing results for - "django html checkbox if condition chexked"
Esteban
14 Sep 2020
1<input type="checkbox" name="is_closed" value="closed" {% if 'closed' in 'is_closed %} checked {% else %} '' {% endif %}>
2