Ive recently gotten into Webdesign in Python, I've tried multiple frameworks but web.py seems to be my favorite except for one problem. I cant seem to figure out how to make multiple pages with multiple templates....

here is my code so far:

import web

urls = (

'/', 'index', '/login/', 'login'


)

app = web.application(urls, globals())
render = web.template.render('templates/')

class index():
    def GET(self):
        return render.index()
class login():
    def GET(self):
        return render.login()



if __name__ == '__main__':
    app.run()

I get an error when I try to go to the login page :/

link|improve this question

80% accept rate
You have a login.html in the templates/ directory, correct? – icktoofay Nov 6 '11 at 0:58
Yes, index.html loads its just when I try to go to login.html – Max00355 Nov 6 '11 at 1:03
Are you going to http://.../login or http://.../login/? (note the trailing slash) – icktoofay Nov 6 '11 at 1:19
/login/ but I have tried both. – Max00355 Nov 6 '11 at 1:31
That's strange, because it works for me. – icktoofay Nov 6 '11 at 2:05
show 3 more comments
feedback

1 Answer

up vote 1 down vote accepted

Try changing your url mapping:

urls = (
    '/', 'index', 
    '/login/?', 'login',
)

/login/? will work for /login and /login/ url paths.

It will be better if you show an exception that you get.

link|improve this answer
Oh my god I love you so much! You dont even know how long this has been bothering me – Max00355 Nov 6 '11 at 13:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.