3. Include the polls URLconf in your project urls.py like this::
```python
fromdjango.urlsimportpath,include
path('',include('basetheme_bootstrap.urls')),
```
3. Run `python manage.py migrate` to create the UserPreferences model if you decided to have one.
4. Make your templates extends base template from`basetheme_bootstrap`, or even better create your own base.html which extends the one from `basetheme_bootstrap`::