Get the feedback

Report a typo

A site is going to implement comment forms and send the users email notifications of new replies. Write a form that takes the user’s name, email, and comment. Using not mandatory RadioSelect widget, add the label with the question How often should I send notifications? to the form.

Also, please accommodate for people who love to share a lot in their comments.

Sample Input 1:

TEST

Sample Output 1:

Write a program in Python 3
from django import forms

FREQ = [
('daily', 'Daily'),
('weekly', 'Weekly'),
('monthly', 'Monthly'),
]

class CommentForm(forms.Form):
name = ...
comment = ...
email = ...
frequency = ...
___

Create a free account to access the full topic