Re: [mezzanine-users] How to set menus and to get postedata in Mezzanine Django

2014-04-01 Thread Tameen Malik
> > thank's ! hmm can you answer my second question, i posted today with title > `what to do next`! > -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to mezzan

Re: [mezzanine-users] How to set menus and to get postedata in Mezzanine Django

2014-03-31 Thread Jesse Carrigan
Ken, thank you for posting the link to the Effective Django tutorial. Looks really useful. -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to mezzanine-users+un

Re: [mezzanine-users] How to set menus and to get postedata in Mezzanine Django

2014-03-31 Thread Ken Bolton
Django-CMS is a completely different project from Django and also from Mezzanine. Django-CMS has some nice features, but I am pretty sure it duplicates most of what Mezzanine does. I do not recommend using Django-CMS. I find the code more complicated than Mezzanine's, harder to read, and therefore

Re: [mezzanine-users] How to set menus and to get postedata in Mezzanine Django

2014-03-31 Thread Tameen Malik
> > Yes you are right sir! > hmm there are two things i am moving towards Django -cms and Mezzanine. Should i move to django-cms first to getbetter understanding to mezzanine world or both are different? -- You received this message because you are subscribed to the Google Groups "Mez

Re: [mezzanine-users] How to set menus and to get postedata in Mezzanine Django

2014-03-31 Thread Ken Bolton
If you do the Django tutorial, it will teach you how to synchronize the database. The Mezzanine documentation does not cover this, but the opening words of the Mezzanine docs are: A working knowledge of Django is required to work with Mezzanine and the documentatio

Re: [mezzanine-users] How to set menus and to get postedata in Mezzanine Django

2014-03-31 Thread Tameen Malik
> > yes i studied first 5 chapters of djangobook.com this week. hmm i don't > know i just stuck here in mezzanine. Sir can't you give me small example > (if you can). Mezzanine documentation is not detailed or may be my mind > can't work unless i go through 3,4 examples! :( > -- You received

Re: [mezzanine-users] How to set menus and to get postedata in Mezzanine Django

2014-03-31 Thread Ken Bolton
Have you done the Django tutorial at https://docs.djangoproject.com/en/1.6/intro/tutorial01/? South is highly recommended for managing your database schema: http://mezzanine.jupo.org/docs/model-customization.html#field-injection-caveats I would also take a step back and go through http://effectiv

Re: [mezzanine-users] How to set menus and to get postedata in Mezzanine Django

2014-03-31 Thread Tameen Malik
> > Thank You! >> >hmmm see i have created models.py file in project have these lines: > > from django.db import modelsfrom mezzanine.pages.models import Pageclass > Author(Page): > dob = models.DateField("Date of birth") > class Book(models.Model): > author = models.ForeignKey("Autho

Re: [mezzanine-users] How to set menus and to get postedata in Mezzanine Django

2014-03-31 Thread Tameen Malik
> > Thank You! > hmmm see i have created models.py file in project have these lines: from django.db import modelsfrom mezzanine.pages.models import Pageclass Author(Page): dob = models.DateField("Date of birth") class Book(models.Model): author = models.ForeignKey("Author") cover

Re: [mezzanine-users] How to set menus and to get postedata in Mezzanine Django

2014-03-31 Thread Ken Bolton
Hi Tameen, I urge you to read the Mezzanine documentation thoroughly. As with Django, the Mezzanine documentation is of extraordinary quality and covers the topics you bring up much more thoroughly than I will do below. Actually, after reading the documentation myself briefly to make sure I don't

Re: [mezzanine-users] How to set menus and to get postedata in Mezzanine Django

2014-03-31 Thread Tameen Malik
> > Kenneth Bolton i am still confuse with two things: > First Scenario: I go to http://127.0.0.1:8000/admin/ page. i log-in using my admin account. I go to `Pages`, add new page named `FirstPage` . This page has one submission form to get email id , user name etc. Now i can see this page in m

Re: [mezzanine-users] How to set menus and to get postedata in Mezzanine Django

2014-03-31 Thread Tameen Malik
> > Great reply. >> > > >> Thank's Kenneth Bolton >> > > Can i ask you more question's if i face any problems further :) > > Regards > Tameen > -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and st

Re: [mezzanine-users] How to set menus and to get postedata in Mezzanine Django

2014-03-31 Thread Tameen Malik
> > Great reply. >> > > >> Thank's Kenneth Bolton >> > > Can i ask you more question's if i face any problems further :) > > Regards > Tameen > -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and s

Re: [mezzanine-users] How to set menus and to get postedata in Mezzanine Django

2014-03-31 Thread Tameen Malik
> > Great reply. > > Thank's Kenneth Bolton > Can i ask you more question's if i face any problems further :) Regards Tameen -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop receiving ema

Re: [mezzanine-users] How to set menus and to get postedata in Mezzanine Django

2014-03-31 Thread Ken Bolton
Hi Tameen, See my response inline below. On Mon, Mar 31, 2014 at 10:06 AM, Tameen Malik wrote: > if i create page i don't find this in templates folder and if i create html page and store this in templates/pages folder, > how to show this in menu of home page? Pages are created in the admin in

Re: [mezzanine-users] How to set menus and to get postedata in Mezzanine Django

2014-03-31 Thread Tameen Malik
> > Hi Kenneth Bolton Thank's for quick response. Few more questions: >> > In the admin interface for the page, look for the fields "Show in menus". > -*- using admin interface if i create page i don't find this in > templates folder and if i create html page and store this in > templates/page

Re: [mezzanine-users] How to set menus and to get postedata in Mezzanine Django

2014-03-31 Thread Ken Bolton
Hi Tameen, Great questions, all. I urge you to go through the entire Django tutorial if you have not already. During my first four years with Django, I did the tutorial once a quarter to reinforce what I was learning. That is right, I did the tutorial sixteen times! My answers are inline below.

[mezzanine-users] How to set menus and to get postedata in Mezzanine Django

2014-03-31 Thread Tameen Malik
I have created a *model.py* file in which I define my classes like: from django.db import modelsfrom mezzanine.pages.models import Page class Author(Page): dob = models.DateField("Date of birth") class Book(models.Model): author = models.ForeignKey("Author") cover = models.ImageField