New features

Report a typo

A pizzeria plans to introduce a new feature to its site. It will allow customers to add three additional toppings to their order: bacon, salami, and olives. Select the appropriate widget for this task. Create a form where the customer can select one or more toppings.

Sample Input 1:

TEST

Sample Output 1:

Write a program in Python 3
from django import forms
TOPPINGS = [
('bacon', 'Bacon'),
('salami', 'Salami'),
('olives', 'Olives'),
]


class ToppingsForm(forms.Form):
toppings = ...
___

Create a free account to access the full topic