Skip to main content

Use forms in Bootstrap modals with Flask.

Project description

Modals for Flask

Use forms in Bootstrap modals with Flask.

Description

Plain forms can be boring. Using them in modals is possible, but requires JavaScript. Normal form submission in modals is problematic.

This Flask extension eases the process of using forms in Bootstrap modals. Bootstrap versions 4 and 5 are supported. No JavaScript coding is required on your part. You can code in pure Python - flashing messages and rendering templates.

Installation

pip install Flask-Modals

Setup

  1. Import the Modal class and instantiate it in your app.py file.

    from flask_modals import Modal
    
    app = Flask(__name__)
    modal = Modal(app)
    

    You will also need a secret key in the app config (not shown).

  2. Alternatively if you are using the application factory pattern:

    from flask_modals import Modal
    
    modal = Modal()
    
    def create_app():
        app = Flask(__name__)
        modal.init_app(app)
    

  3. Include the following in the head tag of your base template.

    {{ modals() }}
    

  4. Include the following in the modal body.

    <div class="modal-body">
    {{ modal_messages() }}
    <form method="post">
    ...
    

Basic usage

You only need to import the function render_template_modal in your routes.py file. Use it instead of render_template in the route handler for the page with the modal form. It takes an extra argument - modal (the modal id with a default of modal-form).
The extension works by submitting the modal form twice - first via ajax and then, if all validations pass, normally. When submiited via ajax, it passes a field '_ajax' with the form, which can be used as shown below.

Example route handler:

from flask_modals import render_template_modal

@app.route('/', methods=['GET', 'POST'])
def index():

    ajax = '_ajax' in request.form  # Add this line
    form = LoginForm()
    if form.validate_on_submit():
        if form.username.data != 'test' or form.password.data != 'pass':
            flash('Invalid username or password', 'danger')
            return redirect(url_for('index'))

        if ajax:        # Add these
            return ''   # two lines
        login_user(user, remember=form.remember_me.data)

        flash('You have logged in!', 'success')
        return redirect(url_for('home'))

    # Add this line
    return render_template_modal('index.html', form=form)

Other usage

If you want to render a template and not redirect:

@app.route('/', methods=['GET', 'POST'])
def index():

    ajax = '_ajax' in request.form
    form = LoginForm()
    if form.validate_on_submit():
        if form.username.data != 'test' or form.password.data != 'pass':
            flash('Invalid username or password', 'danger')
            return render_template_modal('index.html', form=form)

        if ajax:
            return ''
        login_user(user, remember=form.remember_me.data)

        flash('You have logged in!', 'success')
        return render_template_modal('index.html', form=form)

    return render_template_modal('index.html', form=form)

If the above looks verbose, you can use the response decorator and return a context dictionary, like so:

from flask_modals import response

@app.route('/', methods=['GET', 'POST'])
@response('index.html')
def index():
    ...
    ...
    return {'form': form}

Note

  1. See the examples folder in the repo for more details.

  2. The extension loads the NProgress js library to display a progress bar during form submission.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Flask-Modals-markupsafe-0.5.1.tar.gz (7.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

Flask_Modals_markupsafe-0.5.1-py3-none-any.whl (8.1 kB view details)

Uploaded Python 3

File details

Details for the file Flask-Modals-markupsafe-0.5.1.tar.gz.

File metadata

  • Download URL: Flask-Modals-markupsafe-0.5.1.tar.gz
  • Upload date:
  • Size: 7.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for Flask-Modals-markupsafe-0.5.1.tar.gz
Algorithm Hash digest
SHA256 3288306faa972e55a523dc58c83c9154cabdd04ce6914477192c23175389903c
MD5 5ef6f06bb818c2dc326f0ec319b8d4ff
BLAKE2b-256 3993b0667b7f0c1a69bbaf48e89da443756cd3e3190e224d0f542e7d045789c4

See more details on using hashes here.

File details

Details for the file Flask_Modals_markupsafe-0.5.1-py3-none-any.whl.

File metadata

File hashes

Hashes for Flask_Modals_markupsafe-0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 013b71177872dd3c049e4b2706a4f9402c423e137d17a8b29ea9d574804fa763
MD5 cb7d6c44609655d95b4f5d5c62f9a7f8
BLAKE2b-256 a756574fe3d5beb00c2a3b6e1eb8f362d9ccb3a9b5edf4a9f0ffcf1a4c0ae4cb

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page