thank you nikhil and nevio...:)
On Sun, May 27, 2012 at 2:48 PM, Nevio Vesic wrote:
> You're missing a `content` at def view_page. I've marked possible solution
> *(as red)* that could fix it.
>
> def view_page(request, page_name):
>try:
>page = Page.objects.get(pk=pa
You're missing a `content` at def view_page. I've marked possible solution *(as
red)* that could fix it.
def view_page(request, page_name):
try:
page = Page.objects.get(pk=page_name)
*content = page.content*
except Page.DoesNotExist:
ret
Hi
>From the traceback the error is in :-
def view_page(request, page_name):
try:
page = Page.objects.get(pk=page_name)
except Page.DoesNotExist:
return render_to_response("create.
>
> html",{"page_name":page_name})
>return render_to_response("v
3 matches
Mail list logo