Code Monkey home page Code Monkey logo

Comments (5)

pennersr avatar pennersr commented on June 19, 2024

This is due to:

https://github.com/pennersr/django-allauth/blob/0.58.0/ChangeLog.rst#backwards-incompatible-changes

Since that release, there is no more socialaccount/base.html. Instead, there is a distinction between 2 base templates, the entrance template (all that happens before authenticated), and the account management template. Try:

{% extends "socialaccount/base_manage.html" %}

from django-allauth.

lucas03 avatar lucas03 commented on June 19, 2024

I did, but that does not work out for me:

I found #3513, and tried both socialaccount/base_entrance.html
and socialaccount/base_manage.html, but that doesn't use my html (I override account/base.html).

Did I forget to create another template file that would extend my account/base.html?

from django-allauth.

pennersr avatar pennersr commented on June 19, 2024

There no longer is a account/base.html either. I recommend you to have a look at the allauth templates. The connections page uses:

{% extends "socialaccount/base_manage.html" %}

That base_manage uses:

{% extends "allauth/layouts/manage.html" %}

The account login.html uses:

{% extends "account/base_entrance.html" %}

That base uses:

{% extends "allauth/layouts/entrance.html" %}

Meaning, if you want to provide your own base templates, put them in allauth/layouts/entrance|manage.html.

from django-allauth.

lucas03 avatar lucas03 commented on June 19, 2024

oh, okay. And this is not documented in detail, I should just read code, right? Thank you and have a great evening.

from django-allauth.

pennersr avatar pennersr commented on June 19, 2024

The documentation is indeed lacking in this area, pull requests to improve them are welcome. Note that all this was done so that you can stop copying over the templates. See for example the included example project -- it applies bootstrap styling without overriding the templates at all. Demo up and running here: https://django.demo.allauth.org/

from django-allauth.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.