Skip to content
This repository has been archived by the owner on Oct 22, 2019. It is now read-only.

fix/554 #555

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ account management. It's a fully customizable application that takes care of
the signup, activation, messaging and more. It's BSD licensed, which means you
can use it commercially for free!

## [Documentation](http://docs.django-userena.org/en/latest/index.html)
## [Documentation](https://django-userena.readthedocs.io/en/latest/index.html)

Complete documentation about the
[installation](http://docs.django-userena.org/en/latest/installation.html),
[settings](http://docs.django-userena.org/en/latest/settings.html) and
[F.A.Q.](http://docs.django-userena.org/en/latest/faq.html) is available on
[Read the Docs](http://docs.django-userena.org/en/latest/index.html).
[installation](https://django-userena.readthedocs.io/en/latest/installation.html),
[settings](https://django-userena.readthedocs.io/en/latest/settings.html) and
[F.A.Q.](https://django-userena.readthedocs.io/en/latest/faq.html) is available on
[Read the Docs](https://django-userena.readthedocs.io/en/latest/index.html).

For list of updates and changes see `UPDATES.md` file.
2 changes: 1 addition & 1 deletion demo/demo/templates/static/promo.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ <h3>Used in production</h3>
<a href="https://github.com/bread-and-pepper/django-userena/downloads" id="download">Download</a>
</li>
<li><h3>Read docs</h3>
<a href="http://docs.django-userena.org/" id="docs">Documentation</a>
<a href="https://django-userena.readthedocs.io/" id="docs">Documentation</a>
</li>
<li><h3>Try it out!</h3>
<a href="{% url 'userena_signup' %}" id="demo">Try it out!</a>
Expand Down
6 changes: 3 additions & 3 deletions docs/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ I get a "``Site matching query does not exist.``" exception
-----------------------------------------------------------

This means that your settings.SITE_ID value is incorrect. See the instructions
on SITE_ID in the [Installation section](http://docs.django-userena.org/en/latest/installation.html).
on SITE_ID in the [Installation section](https://django-userena.readthedocs.io/en/latest/installation.html).


<ProfileModel> is already registered exception
Expand All @@ -29,12 +29,12 @@ follows:

# Unregister userena's
admin.site.unregister(YOUR_PROFILE_MODEL)

# Register your own admin class and attach it to the model
admin.site.register(YOUR_PROFILE_MODEL, YOUR_PROFILE_ADMIN)

Can I still add users manually?
-------------------------------
-------------------------------
Yes, but Userena requires there to be a `UserenaSignup` object for every
registered user. If it's not there, you could receive the following error:

Expand Down