UNC BACS 350

Web Apps with Python/Django

Logo

Lesson 23 - View Widgets

LEARN

Django for Beginners - Chapter 10 - Bootstrap

Today

W3Schools

Reusable Views

Refactoring

Building a Theme Template

Navbar, Header, Main, Footer

Lessons App

Apply Reusable Theme

Encapsulation

Merge in Accounts Code

Using Crispy Forms

Install Crispy Forms

$ pip install django-crispy-forms

config/settings.py

INSTALLED_APPS = [ ... 'crispy_forms', ]

templates/signup.html

{% extends 'theme.html' %}
{% load crispy_forms_tags %}

{% block content %}
<form method="post">
    {% csrf_token %}
    {{ form|crispy }}
    <button type="submit">Sign Up</button>
</form>
{% endblock content %}

BUILD

Project 7 - Superhero Data Views