At the moment I have this URL working

/

/ter

/graph

I have an IndexPage(LivePage) with its

    def child_ter(self, ctx):
        return TerPage()

    def child_graph(self, ctx):
        return GraphPage()

mehods.

TerPage() an GraphPage() pick the firs element of a global list and
show it in differents ways.

I'd like now to enalble urls like /ter/1, /ter/2, /ter/n so the n
element of the list is picked instead of the first one. How is the
correct way to make that argument reach TerPage and GraphPage
instances?

Greets!

-- 
Juanjo Conti

_______________________________________________
Twisted-web mailing list
Twisted-web@twistedmatrix.com
http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-web

Reply via email to