1👍
✅
Also try the approach mentioned here https://docs.djangoproject.com/en/1.4/topics/forms/modelforms/#using-a-subset-of-fields-on-the-form
0👍
how can I include fields from the original model which should not be displayed to the user?
Answering this part of your question
class FooForm(ModelForm):
class Meta:
model = FooModel
exclude = ('not_displayed_field',)
- [Answer]-Django. settings.py -> STATIC_ROOT/STATICFILES_DIRS
- [Answer]-Rewrite rules for manage.py runserver like .htaccess for apache
- [Answer]-Dynamically sort in Django admin
Source:stackexchange.com