-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
register feedback form #5
Comments
Sorry, it's an error in documentation. Try to use {% show_feedback 'order' %} in your template. |
corrected this raised another one how should i call this module ? illucent.redsolutioncms.django_simple_feedback.forms.OrderForm ? |
Do you have illucent.custom_feedback.forms module? FEEDBACK_FORMS accepts full import path to form class. |
/nfs/http7/illucent/modules/redsolutioncms.django_simple_feedback-0.3.8-py2.6.egg |
name of module and path... |
i've thought in settings.py i should assign |
Is OrderForm class can be imported from manage.py shell? |
ImportError: No module named OrderForm |
Form class should be importable. Correct errors and set FEEDBACK_FORMS dictionary value to importable class. FEEDBACK_FORMS = { 'default': 'feedback.forms.FeedbackForm', 'order': 'illucent.custom_feedback.forms.CutomForm', } |
http://illucent.info/contact/
ImproperlyConfigured at /contact/
Form not registered in FEEDBACK_FORMS
though settings.py has
FEEDBACK_FORMS = {
'default': 'feedback.forms.FeedbackForm',
'order': 'itsme.custom_feedback.forms.OrderForm',
}
The text was updated successfully, but these errors were encountered: