Re: how to call django web page with ordinary html page

2014-08-29 Thread Pawan Soni


On Friday, August 29, 2014 5:47:19 PM UTC+5:30, Shubham Pansari wrote:
>
> You are missing csrf_token which is set by request for csrf verification. 
> After the line 
> http://127.0.0.1:8000/test/; method="post">
> in your code put {%csrf_token%} and it should work fine and also read why 
> it didnot worked without it from 
> https://docs.djangoproject.com/en/dev/ref/contrib/csrf/  . This should 
> answer all your queries.
>
>
> On Fri, Aug 29, 2014 at 4:36 PM, Pawan Soni <pawan@gmail.com 
> > wrote:
>
>> Hi ,
>>
>> i have a simple html page,*p.html *which is not made in django 
>> application ,its just a ordinary html page  which look like..
>>
>> 
>> 
>> http://127.0.0.1:8000/test/; method="post">
>> 
>> 
>> 
>> 
>>
>> In form's action i am passing the path of my django url..
>>
>> this is my *urls.py* file..
>>
>>  from django.conf.urls import patterns, include, url
>> from django.contrib import admin
>> from login import views
>>   urlpatterns = patterns('',
>>url(r'^test',views.paymentcheck_view,name="test"),
>>)
>>
>> my *views.py.*.
>> 
>>  def paymentcheck_view(request):
>>if request.method == "POST":
>> c = {}
>> c.update(csrf(request))
>> return render_to_response('login1/create_pay_page.html',c)
>>else:
>> return HttpResponse('GET')
>>
>> Error i got ...
>>
>> Forbidden (403)
>>
>> CSRF verification failed. Request aborted.
>> 
>> 
>> i am stuck over here,pls help me 
>>
>> Thnx in advance
>>
>>
>> 
>>
>  Thanks Shubham for guiding me and your precious response,but 
my concern is that if i used simple/plain html page and if i would use 
{%csrf_token %} in that page ,i think this is not working .
  Is any other alternative ways to do this task.
Thanks :)


  

>  -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to django-users...@googlegroups.com .
>> To post to this group, send email to django...@googlegroups.com 
>> .
>> Visit this group at http://groups.google.com/group/django-users.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/2b21261b-c48f-43d2-8db0-810b0c7a9c02%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/django-users/2b21261b-c48f-43d2-8db0-810b0c7a9c02%40googlegroups.com?utm_medium=email_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/ed8d597a-5897-4be2-9402-f77d464700ff%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Django framework plugin

2014-08-29 Thread Pawan Soni


Hi,

I am trying to create a Django application as a plugin to integrate with 
other Django framework applications or websites (for example: a Payment 
gateway plugin).  My application has package hierarchy as mentioned below.



DjangoProject   

|=> Djangowork

|templates 

|=>_*inti*_.py

|settings.py

|   urls.py

|wsgi.py

| views.py

   |=>manage.py

 

I have already implemented the functionalities for the application but I am 
unable to convert the package into a plug-in. Is there a way to convert it 
into a plug-in, to be used with other Django websites or applications? If 
not as a plug-in, what would be other ways to accomplish such tasks?

I will be grateful for any help regarding the queries I have. Thanks in 
advance.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/c90c2413-f589-4d36-9df6-f0c0ca8f2163%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


how to call django web page with ordinary html page

2014-08-29 Thread Pawan Soni
Hi ,

i have a simple html page,*p.html *which is not made in django application 
,its just a ordinary html page  which look like..



http://127.0.0.1:8000/test/; method="post">





In form's action i am passing the path of my django url..

this is my *urls.py* file..

 from django.conf.urls import patterns, include, url
from django.contrib import admin
from login import views
  urlpatterns = patterns('',
   url(r'^test',views.paymentcheck_view,name="test"),
   )

my *views.py.*.

 def paymentcheck_view(request):
   if request.method == "POST":
c = {}
c.update(csrf(request))
return render_to_response('login1/create_pay_page.html',c)
   else:
return HttpResponse('GET')

Error i got ...

Forbidden (403)

CSRF verification failed. Request aborted.


i am stuck over here,pls help me 

Thnx in advance



-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/2b21261b-c48f-43d2-8db0-810b0c7a9c02%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.