您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

payment_method.html 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {% extends "checkout/checkout.html" %}
  2. {% load currency_filters %}
  3. {% block payment_method %}
  4. <h3>Payment</h3>
  5. <hr />
  6. <table>
  7. <thead>
  8. <tr>
  9. <th>Method</th>
  10. <th></th>
  11. </tr>
  12. <thead>
  13. <tbody>
  14. <tr>
  15. <td>Cheque</td>
  16. <td>
  17. <form method="post" action="{% url oscar-checkout-payment-method %}">
  18. {% csrf_token %}
  19. <input type="hidden" name="method_code" value="cheque" />
  20. <input type="submit" value="Pay by cheque" />
  21. </form>
  22. </td>
  23. </tr>
  24. <tr>
  25. <td>Bankcard</td>
  26. <td>
  27. <form method="post" action="{% url oscar-checkout-payment-method %}">
  28. {% csrf_token %}
  29. <input type="hidden" name="method_code" value="bankcard" />
  30. <input type="submit" value="Pay by bankcard" />
  31. </form>
  32. </td>
  33. </tr>
  34. </tbody>
  35. </table>
  36. {% endblock payment_method %}