Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
I am migrating my django project to pylons and am up to form validations.
Is the builtin formencode module sufficient for form validation or is WTforms a "better" option? What would be the advatanges of using wtforms?
I chose sqlalchemy as the orm backend so something that plays nicely with that would be nice too.
WTForms is very similar to django forms. If you are migrating you should probably use it to speedup your migration.
I also recommend WTForms it's much easier to use than formencode and have builtin sqlalchemy extensions.
Related
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 2 years ago.
Improve this question
Can we use Django registration redux form in professional website. I am confused. Please help.
The license for Django-Registration(-Redux) is the 3-clause BSD License, so yes, you can use it in a commercial context.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
Improve this question
Both of these fields appear to serve essentially the same purpose. Are there any situations in which you would choose a SlugField instead of a URLField?
URLField is used to store URL, where as SlugField is used to store a alphanumeric/varchar value that relates to the title or some description of the model.
Example
URL: https://www.example.com/products/whss1540-wrogn-printed-slim-fit-sweatshirt
Slug: whss1540-wrogn-printed-slim-fit-sweatshirt
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
I'm getting quite familiar with Django and Tastypie but I have a question about best practices. When I'm hydrating data coming from a POST, should I prefer to hydrate all fields directly in the hydrate function or it's recommended to hydrate each field separetely in the corresponding hydrate_field subfunction? In my case I have only 4 fields and to me it seems faster to simply define the hydrate function with 5 lines of code performing the complete transformation of the provided bundle.
Thanks for your help
Hydrating all 4 fields in a single hydrate method is totally fine, just be careful not to hydrate data for read-only fields.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
Is thre a way to use the django.contrib.admindocs package to generate HTML/PDF documentation for my own models and views and functions I have in seporate .py files
possible -- depends on how the docs for your files are structured
If you're just looking to generate user friendly docs from your python files you may be better off with Python Sphinx
pretty much the standard for generating HTML documentation -- same system used on ReadTheDocs
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
In sitecore one can use Web Forms for Marketers to create Forms. Is there a standard facility to create FAQ?
This would be fairly trivial functionality to build out using standard Sitecore templates/sublayouts/etc. It would be content, and thus doesn't need a plugin or module.