On Oct 14, 4:52 pm, bruno desthuilliers
<[EMAIL PROTECTED]> wrote:
> On 14 oct, 23:25, KillaBee <[EMAIL PROTECTED]>
> wrote:
>
>
>
> > On Oct 14, 4:17 pm, bruno desthuilliers
>
> > <[EMAIL PROTECTED]> wrote:
> > > On 14 oct, 21:35, KillaBee <[EMAIL PROTECTED]>
> > > wrote:
> > > (snip)
>
> > > > No, it is very helpful, I know now that I have to learn all of python
> > > > and I know now that ... means variable.
>
> > > No. It means learning a computer programming language - which in turn
> > > means having the slightest clue about what a computer language is.
>
> > > > 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?
>
> > > Python's tutorial is here:http://docs.python.org/tutorial/
>
> > > You'll also find some interesting informations
> > > here:www.catb.org/~esr/faqs/smart-questions.html
>
> > > To make a long story short:
> > > 1/ learn Python
> > > 2/ learn to ask at least intelligible questions
> > > 3/ then come back here.
>
> > > Until you have completed points 1/ and 2/, *no one* will be able to
> > > help you here - and chances are no one will even bother reading your
> > > posts no more.
>
> > > I don't like to look like the ugly guy in town, but seriously, these
> > > are the friendliests and most helpful advises I can give you.
>
> > yep, until today I didn't know that Django was python,
>
> Is this a joke ???
>
> fromhttp://www.djangoproject.com/
>
> """
> Django is a high-level Python Web framework
> """
>
> Heck, it's the 5th (fith) sentence on Django's home page, and it in
> big bold face. Not talking about the "quick overview" (a dozen
> mentions of Python here), and let's not even mention the doc. Wait...
> Did you even bother *reading* the doc ???
Check, I have read the lovely guide, and Didn't have to know real
Python until now. I know that every body on here are super
programmers, but I just want to know the steps to get this done. If I
need to learn python so be it. But don't act like Python is always
needed, the last things I need to do is show and filter with a
calendar data picker.. If I can write to the DB i should be able to
display in a simuler way. Django is a python help, now that that is
out the way.
So, I can't read and display like I wrote, save()?
what does "news_list = New.objects.all().order_by('-date')" do,
looks like it it gets all() the objects in new and order them by
date?
kinda like t=time(user=user, fedtime=fedtime, worked=worked,
date=date ) then t.save() OK, alltime=time.objects.all() will not do
it. Do I make QuerySets with python and not with Django? Do you know
what the next step is????? no, people don't respond but not because, I
don't know python it is because, I don't go on and on and on about it,
but I fixed today.............................thanks
from django.contrib.auth import logout, login, authenticate
def login(request):
news_list = New.objects.all().order_by('-
date')****************************
if request.method == 'POST':
username = request.POST['username']
password = request.POST['password']
user = auth.authenticate(username=username, password=password)
if user is not None:
if user.is_active:
login(request,user)
return HttpResponseRedirect('/')
else:
return render_to_response('registration.html', locals())
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---