2009-12-24 19 views
17

मुझे django-पंजीकरण के लिए अच्छे टेम्पलेट्स कहां मिल सकते हैं? मुझे एक मिला है, लेकिन सक्रियण ठीक से काम नहीं कर रहा है - जब उपयोगकर्ता सक्रियण लिंक पर क्लिक करता है तो उसे प्राप्त होता है:Django-पंजीकरण, टेम्पलेट

हैलो! पंजीकरण की पुष्टि के लिए अपने ई-मेल की जांच करें। 7 दिन बचे हैं।

~ "सक्रियण succesfull/विफल" के बजाय।

उत्तर

18

कुछ टेम्पलेट्स यहां पाया जा सकता: http://devdoodles.wordpress.com/2009/02/16/user-authentication-with-django-registration/

$ tree 
. 
|-- [   981] base.html 
|-- [    89] index.html 
`-- [   544] registration 
    |-- [   287] activate.html 
    |-- [   221] activation_email.txt 
    |-- [    67] activation_email_subject.txt 
    |-- [   459] login.html 
    |-- [   110] logout.html 
    |-- [   116] password_change_done.html 
    |-- [   192] password_change_form.html 
    |-- [   193] password_reset_complete.html 
    |-- [   283] password_reset_confirm.html 
    |-- [   153] password_reset_done.html 
    |-- [   215] password_reset_email.html 
    |-- [   192] password_reset_form.html 
    |-- [   146] registration_complete.html 
    `-- [   192] registration_form.html 
14

मैंने पाया यहाँ टेम्पलेट्स एक अच्छा प्रारंभिक बिंदु हो:

https://github.com/yourcelf/django-registration-defaults

(ध्यान दें कि आप एक base.html करने की जरूरत है उनके लिए शामिल करने के लिए)

+0

मुझे यह पसंद है, धन्यवाद! – Agos

2

the djen of django book कुछ स्पष्टीकरण के साथ django-पंजीकरण के लिए कुछ टेम्पलेट्स हैं।

1

सुनिश्चित करें कि आप Django-registration-redux के नवीनतम संस्करण का उपयोग कर रहे हैं। वर्तमान संस्करण 1.4 है। this लिंक पर भी जाएं और मैन्युअल रूप से django-पंजीकरण ऐप डाउनलोड करें। डाउनलोड करने के बाद बस अपने टेम्पलेट्स को टेम्पलेट्स/पंजीकरण से अपने टेम्पलेट्स/पंजीकरण में ड्रॉप करें। इन चरणों के बाद स्थिति को दोबारा जांचें।

संबंधित मुद्दे