誰にもこれに関するアイデアはありますか?無効なブロックタグ: 'pay_pal'、予想される 'エンドブロック'または 'エンドブロックのコンテンツ'
無効なブロックタグ: 'pay_pal'、予想される '末端ブロック' または 'エンドブロックコンテンツ' 私の
views.py
で
、私はこの
と私のテンプレート、pay_pay.html
で
pay_pal = get_integration("pay_pal")
pay_pal.add_fields({
"business": "[email protected]",
"item_name": product.name,
"invoice": inst.id,
"notify_url": settings.BASE_DNS + "/paypal-ipn-handler/",
"return_url": settings.BASE_DNS + str(client.id) + '/book/'+str(inst.id) +'/success/?booksaved=1',
"cancel_return": settings.BASE_DNS + str(client.id) + '/?booksaved=0',
"amount": inst.totalcost})
return render_to_response("pay_pay.html", {"obj": pay_pal},context_instance=RequestContext(request))
、私はこれを持っています:
{% extends "main_base_bookingpage.html" %}
{% block bodyclass %}product-add{% endblock %}
{% block content %}
<h1>Pay here!</h1>
{% load billing_tags %}
{% pay_pal obj %}
{% endblock %}
あなたはどのpaypalライブラリを使用していますか? –