Open daniel-butler opened 4 years ago
Checkout Button to match the new Oscar bootstrap layout, but it doesn't seem like this is the right way to implement this and should actually be in the payments page.
{% extends 'oscar/basket/partials/basket_content.html' %}
{% load i18n %}
{% block formactions %}
<div class="form-group clearfix">
<div class="row">
{% if annon_checkout_allowed or request.user.is_authenticated %}
<div class="col-sm-4">
<a href="{% url 'paypal-redirect' %}">
<img
src="https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif"
alt="paypal checkout"
align="left"
style="margin-right: 7px;" />
</a>
</div>
<div class="col-sm-4 col-sm-offset-4">
<a href="{% url 'checkout:index' %}" class="pull-right btn btn-large btn-primary">{% trans "Proceed to checkout" %}</a>
</div>
{% else %}
<div class="col-sm-4 col-sm-offset-8">
<a href="{% url 'checkout:index' %}" class="pull-right btn btn-large btn-primary">{% trans "Proceed to checkout" %}</a>
</div>
{% endif %}
</div>
</div>
{% endblock %}
Rename Paypal Express to Paypal Checkout because paypal changed the name Article describing the name change
I have just discovered this documentation issue which led me to this thread.
The #176 update made some of the getting started documentation out of date. I love the progress and keeping up with the newest LTS versions!
The pull request #215 was only a minor fix to the buyer/seller verbage. I'll keep all of the other changes in this Issue.
First is this section no longer works
urls.py
it looks like this has all been refactored into the
paypal/payflow/dashboard/apps.py
module. However when creating an application we are missing the following OscarDashboardConfig ParametersDocumentation page