Hi,

I am using the registration 0.8 alpha. I can create an account and the
activation email is send the activation link. When I click on the link
the account is getting active in the database but the message on the
webpage is telling me something different.

I do use this template.

{% extends "base.html" %}

{% block title %}Account activated{% endblock %}

{% block content %}
  <h1>Account activated.</h1>
  {% load humanize %}
  {% if account %}
    <p>Thanks for signing up! Now you can <a href="/accounts/
login/">log in</a>.</p>
  {% else %}
    <p>Sorry, it didn't work. Either your activation link was
incorrect, or
    the activation key for your account has expired; activation keys
are
    only valid for {{ expiration_days|apnumber }} days after
    registration.</p>
  {% endif %}
{% endblock %}


Why doesn't come up the Thanks... text obviously the use is activated
in the database? Do I have to set up something in the configuration
file?

Craphunter

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to