Skip to content

Commit

Permalink
updated ogone demo templates
Browse files Browse the repository at this point in the history
  • Loading branch information
tuxcanfly committed May 17, 2013
1 parent da328f5 commit 109870c
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 11 deletions.
16 changes: 11 additions & 5 deletions example/app/templates/billing/ogone_failure.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
{% extends "app/base.html" %}

{% block content %}
The transaction failed!
<hr />
Status: {{ message }}
<hr />
PAY ID: {{ response.PAYID }}
<div class="row">
<div class="span10">
<div class="alert alert-block">
<a class="close">×</a>
<h4 class="alert-heading">Response:</h4>
<p>{{ message }} </p>
<p>Pay ID: {{ response.PAYID }}</p>
</div>
</div>
</div>
{{ block.super }}
{% endblock %}
18 changes: 12 additions & 6 deletions example/app/templates/billing/ogone_success.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
{% extends "app/base.html" %}
{% extends "app/ogone.html" %}

{% block content %}
The transaction was successful!
<hr />
Status: {{ message }}
<hr />
PAY ID: {{ response.PAYID }}
<div class="row">
<div class="span10">
<div class="alert alert-block">
<a class="close">×</a>
<h4 class="alert-heading">Response:</h4>
<p>{{ message }} </p>
<p>Pay ID: {{ response.PAYID }}</p>
</div>
</div>
</div>
{{ block.super }}
{% endblock %}

0 comments on commit 109870c

Please sign in to comment.