Changeset 974

Show
Ignore:
Timestamp:
11/07/08 14:48:44 (2 months ago)
Author:
lucy
Message:

registration emails come from BuyItLikeYouMeanIt? now

Location:
huginmunin/trunk/web/hm
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • huginmunin/trunk/web/hm/app/templates/account/confirmation_error.html

    r632 r974  
    1717        {{ expiration_days|apnumber }} days since you registered.  You can 
    1818        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> 
    2020 
    2121{% endblock %} 
  • huginmunin/trunk/web/hm/app/views/account_urls.py

    r946 r974  
    99#    (r'^activate/(?P<username>[\w\d]+)/(?P<activation_code>[\w\d]+)/$', account.activate), 
    1010    (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"), 
    1212     
    1313    # user forgets password or username 
  • huginmunin/trunk/web/hm/settings.py

    r963 r974  
    2929    ('Dev-Flock (Buy It Like You Mean It)', 'dev-flock@bilumi.org'), 
    3030) 
    31 EMAIL_DEFAULT_FROM = 'dev-flock@%s' % DOMAIN 
     31EMAIL_DEFAULT_FROM = "BuyItLikeYouMeanIt@%s" % DOMAIN 
    3232 
    3333MANAGERS = ADMINS