Changeset 974
- Timestamp:
- 11/07/08 14:48:44 (2 months ago)
- Location:
- huginmunin/trunk/web/hm
- Files:
-
- 3 modified
-
app/templates/account/confirmation_error.html (modified) (1 diff)
-
app/views/account_urls.py (modified) (1 diff)
-
settings.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
huginmunin/trunk/web/hm/app/templates/account/confirmation_error.html
r632 r974 17 17 {{ expiration_days|apnumber }} days since you registered. You can 18 18 have a new code sent 19 from <a href=" resend_confirmation_code">here.</a></p>19 from <a href="{% url resend_confirmation_code %}">here.</a></p> 20 20 21 21 {% endblock %} -
huginmunin/trunk/web/hm/app/views/account_urls.py
r946 r974 9 9 # (r'^activate/(?P<username>[\w\d]+)/(?P<activation_code>[\w\d]+)/$', account.activate), 10 10 (r'^confirm/(?P<username>[\w\d]+)/(?P<confirmation_code>[\w\d]+)/$', account.confirm), 11 (r'^resend_confirmation_code', account.resend_confirmation_code),11 url(r'^resend_confirmation_code', account.resend_confirmation_code, name="resend_confirmation_code"), 12 12 13 13 # user forgets password or username -
huginmunin/trunk/web/hm/settings.py
r963 r974 29 29 ('Dev-Flock (Buy It Like You Mean It)', 'dev-flock@bilumi.org'), 30 30 ) 31 EMAIL_DEFAULT_FROM = 'dev-flock@%s'% DOMAIN31 EMAIL_DEFAULT_FROM = "BuyItLikeYouMeanIt@%s" % DOMAIN 32 32 33 33 MANAGERS = ADMINS