{% extends "extensions/layout.html" %} {% block title %}Extensions Registry{% endblock %} {% block body %}

Welcome to the Flask extensions registry. Here you can find a list of packages that extend Flask. This list is moderated and updated on a regular basis. If you want your package to show up here, follow the guide on creating extensions. {% for extension in extensions %}

{{ extension.name }}

{{ extension.description }}
Author:
{{ extension.author }}
PyPI Page:
{{ extension.name }} {% if extension.website %}
Website:
{{ extension.website|urlize }} {% endif %} {% if extension.docs %}
Documentation:
Read docs @ {{ extension.docserver }} {% endif %} {% if extension.github %}
On Github:
{{ extension.github }} {% endif %} {% if extension.bitbucket %}
On Bitbucket:
{{ extension.bitbucket }} {% endif %}
{% endfor %} {% endblock %}