Metadata-Version: 2.1
Name: allauth-jinja
Version: 0.0.3
Summary: 
Author: Eddie Cohen
Author-email: eddie@lightmatter.com
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: django (>=4.2.5,<5.0.0)
Requires-Dist: django-allauth (>=0.56.1,<0.57.0)
Requires-Dist: django-jinja (>=2.11.0,<3.0.0)
Description-Content-Type: text/markdown

# allauth-jinja
The complete set of [django-allauth](https://github.com/pennersr/django-allauth) templates rewritten in jinja.

## Installation & Usage
[not published yet]

Add allauth_jinja to your installed apps above allauth, e.g.
```
INSTALLED_APPS = [
  ...
  allauth_jinja,
  allauth,
  ...
]
```

In your templates settings for jinja you must have at least the following
```
{
  "APP_DIRS": True,
  "OPTIONS": {
    "match_extension": None,
    "app_dirname": "jinja2",
    "undefined": "jinja2.Undefined",
    "context_processors": [
      "django.template.context_processors.request",
      "django.contrib.messages.context_processors.messages",
      ...
    ],
    "globals": {
      ...,
      "user_display": "allauth_jinja.account.templatetags.account.user_display",
      ...
    }
  }
}
```

Depending on what templates you use you'll need to add the relevant global functions.

