Hello everyone. Making well-structured websites on Django is a very comprehensive process. All these blogs, news, user-related stuff - easy. But what about, say, corporate website? I mean I got a project to do, thought it would be great to base it on Django as usual, but...
Look at the structure, it's pretty easy. / ––/about/ ––/contacts/ ––/history/ ––/projects/ ––––/project1/ ––––/project2/ ––––/project3/ All the pages should have some meta fields, text field to show, slug - something that is common for all pages. Now what is different for all that pages. Contacts page in addition to common fields should have fields in admin to edit: 2-4 phone numbers, link to Gmap, ImageField and a ForeignKey for people related to contacts page (separate model with some fields). Projects page should have an ImageField too and a ForeignKey for some projects (separate model with some fields). About page should have ImageField, 2-5 FileFields, another TextField and some files as a ForeignKey model. So, as you see, there should be a number of different editable... things. All of them with differend fields and some with related models... Is it really easy to implement using Django? I'm not really sure how to do that... Thanks for replies ahead. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

