On Oct 14, 1:47 pm, "Karen Tracey" <[EMAIL PROTECTED]> wrote:
> On Tue, Oct 14, 2008 at 1:52 PM, KillaBee <
>
>
>
> [EMAIL PROTECTED]> wrote:
> > On Oct 14, 12:14 pm, KillaBee <[EMAIL PROTECTED]>
> > wrote:
> > > On Oct 14, 12:07 pm, Brian Neal <[EMAIL PROTECTED]> wrote:
>
> > > > On Oct 14, 11:35 am, KillaBee <[EMAIL PROTECTED]>
> > > > wrote:
>
> > > > > I was reading the Making queries guide on the the website.
> >http://docs.djangoproject.com/en/dev/topics/db/queries/#topics-db-que...
> > > > > It said:
>
> > > > > >>> Blog.objects
>
> > > > > <django.db.models.manager.Manager object at ...>>>> b =
> > Blog(name='Foo', tagline='Bar')
> > > > > >>> b.objects
>
> > > > > Traceback:
> > > > > ...
> > > > > AttributeError: "Manager isn't accessible via Blog instances."
>
> > > > > <django.db.models.manager.Manager object at ...>
> > > > > What is this ... what is it, and why can't the page just say it.
> > > > > Please no secrets.
>
> > > > > I to do this, in this view all the time.
>
> > > > > Blog.objects <django.db.models.manager.Manager object at ...>
> > > > > t = time(user=user, fedtime=fedtime, worked=worked, date=date)
> > > > > t.objects
> > > > > time.objects.filter( user=username ).filter( PP=44 )
>
> > > > I'm not really sure what you mean. The docs are showing you an example
> > > > of interactive Python using the shell. You don't type the above into
> > > > your program. You do know about Python's interactive shell, right?
>
> > > > The Blog.objects <django.db.models.manager.Manager object at ...>
> > > > business is the shell printing out the __unicode__ representation of
> > > > an object.
>
> > > I know about it, and saw those >>>. I didn't know I had to use it.
> > > When do I use it?
>
> > OK now i am real confussed. I did the save() in my form that is the
> > first part. Does any have a working example of how to filter() not
> > python.
> > If I have to use python to where does Django come in?
>
> Say what? I have no idea what you are asking. You started out with a
> question about the docs in the area of making queries. Now you have jumped
> to forms and save() -- entirely different topics, and are also asking how
> not to write Python? Django is written in Python, your code using Django is
> written in Python. Django provides many constructs and functions that allow
> you to write much less Python than you would have to if you were going to
> write your own database-driven web application from scratch, but you still
> need to write some Python code. Which means you do have to have a working
> grasp of the Python language in order to write a Django application.
>
> People on this list are going to have a hard time helping if you do not take
> the time and make an effort to post quesitons that can be understood. "my
> form that is the first part" refers to nothing in this previous conversation
> so how can anyone be expected to respond sensibly?
>
> You also earlier ask for "please no secrets" in the documentation -- the
> documentation isn't trying to hide anything. The project is open source so
> there is nothing to hide. The excerpt you cite from the doc is simply
> trying to point out that you can't use the 'objects' attribute on a variable
> that is an instance of a model class instead of the model class itself.
> This makes perfect sense so I'm having difficulty understanding what your
> issue is with it.
>
> If you don't understand the distinction between an instance of a class and
> the class itself then that is perhaps an indication that you need to develop
> a better understanding of Python before you are going to be comfortable
> writing Django application code. I'm sorry if that sounds unhelpful but
> honestly it's the best advice I have at this point.
>
> Karen
No, it is very helpful, I know now that I have to learn all of python
and I know now that ... means variable.
I changed because I put save() in my view, per my last post about how
to save data to the db, and didn't not open a python console.
I tried to enter those lines in the pyhton shell starting with the
importing of my class time, but it said there was no module with that
name.
"from intranet.timesheets.models import time" and there is a models.py
and a time class in it? do you think that it is not i my sitepath?
I am still wanting to display data from the db, I was think that
django had something to do it.
So, after I enter those lines in my python shell, How do I put it in
my view or page?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
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
-~----------~----~----~----~------~----~------~--~---