Tengo un proyecto basico, en el cual con una view basada en una clase (TemplateView) muestro un html simple. Hasta aqui cero problema, Ahora lo que yo necesitaria es captar de un link, por ejemplo: ' localhost:8000/home/?code=asd123 ' necesitaria captar ese ' asd123 ' y plasmarlo en el html, pero sinceramente no se como. Si alguien me puede tirar una soga se lo agradezco mucho!
Código Python:
Ver original
#Views.py from django.views.generic import TemplateView class Index(TemplateView): template_name = "test.html"
Código Python:
Ver original
#urls.py from django.conf.urls import patterns, include, url from polls.views import Index urlpatterns = patterns('', url(r'^home/$', Index.as_view()), )
Código HTML:
<!-- test.html --> <html> <head> <title>Titulo</title> </head> <body> <h1>Titulo</h1> </body> </html>