summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2018-06-29 12:25:19 +0200
committerMarcello Stanisci <stanisci.m@gmail.com>2018-06-29 12:25:19 +0200
commit26ac0148dec4b1b59060099feb7e5ae8a16c8449 (patch)
treef38a2dfd2cca010f0d5e995336541dafec89f59d
parent16bf7a8578eedb4c1df8e39a11227c0542dc4ddf (diff)
downloadlanding-26ac0148dec4b1b59060099feb7e5ae8a16c8449.tar.gz
landing-26ac0148dec4b1b59060099feb7e5ae8a16c8449.tar.bz2
landing-26ac0148dec4b1b59060099feb7e5ae8a16c8449.zip
Restore back-office links.
-rw-r--r--demo/index.html.j212
-rwxr-xr-xdemo/template.py1
2 files changed, 12 insertions, 1 deletions
diff --git a/demo/index.html.j2 b/demo/index.html.j2
index ccfa71d..2e1da37 100644
--- a/demo/index.html.j2
+++ b/demo/index.html.j2
@@ -46,6 +46,7 @@
<li><a href="{{ merchant_blog_url }}">Essay Shop</a></li>
<li><a href="{{ merchant_donations_url }}">Donations</a></li>
<li><a href="{{ merchant_survey_url }}">Tipping/Survey</a></li>
+ <li><a href="{{ backoffice_url }}">Back-office</a></li>
</ul>
<p>You can learn more about Taler on our main <a href="https://taler.net">website</a>.</p>
</div>
@@ -108,7 +109,16 @@
</ul>
</article>
<article>
- <h2>Step 5: Reach out to us</sup></h2>
+ <h2>Step 5: Merchant? Consult back-office</sup></h2>
+ <ul>
+ <li>
+ If you are a merchant, you can check the <a href="{{ backoffice_url }}">back-office</a>
+ Web-site to see how your Taler transactions got payed back by bank wire transfers.
+ </li>
+ </ul>
+ </article>
+ <article>
+ <h2>Step 6: Reach out to us</sup></h2>
Let us know what you think by <a href="mailto:demo-feedback@taler.net">contacting us</a>.
</article>
<hr />
diff --git a/demo/template.py b/demo/template.py
index b863503..05599e4 100755
--- a/demo/template.py
+++ b/demo/template.py
@@ -33,6 +33,7 @@ default_ctx["merchant_survey_url"] = os.environ.get("TALER_ENV_URL_MERCHANT_SURV
default_ctx["intro_url"] = os.environ.get("TALER_ENV_URL_INTRO", "#")
default_ctx["bank_url"] = os.environ.get("TALER_ENV_URL_BANK", "#")
default_ctx["auditor_url"] = os.environ.get("TALER_ENV_URL_AUDITOR", "#")
+default_ctx["backoffice_url"] = os.environ.get("TALER_ENV_URL_BACKOFFICE", "#")
for in_file in glob.glob("*.j2"):