Skip to content

Commit

Permalink
make the billing address look less important
Browse files Browse the repository at this point in the history
We want people to prefer the "address" over the "billing address" whenever possible.
  • Loading branch information
honzajavorek committed Nov 16, 2018
1 parent 96c6bf0 commit d219b74
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pyvecorg/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -206,18 +206,18 @@ <h3>{{ members.note.heading }}</h3>
<div class="container">
<div class="row">
<div class="col address">
<h3>{{ meta.billing_address.heading }}</h3>
{{ meta.billing_address.directions|markdown }}
<h3>{{ meta.address.heading }}</h3>
{{ meta.address.directions|markdown }}
<p>
{{ meta.reg_no.label }}: <a href="http://wwwinfo.mfcr.cz/cgi-bin/ares/darv_res.cgi?ico={{ meta.reg_no.value }}&amp;xml=1{% if lang == 'en' %}&amp;jazyk=en{% endif %}">{{ meta.reg_no.value }}</a><br>
E-mail: <a href="mailto:info@pyvec.org">info@pyvec.org</a>
</p>
</div>
<div class="w-100 d-block d-md-none"></div>
<div class="col address">
<h3>{{ meta.address.heading }}</h3>
{{ meta.address.directions|markdown }}
<h3>{{ meta.billing_address.heading }}</h3>
{{ meta.billing_address.directions|markdown }}
<p>
E-mail: <a href="mailto:info@pyvec.org">info@pyvec.org</a>
{{ meta.reg_no.label }}: <a href="http://wwwinfo.mfcr.cz/cgi-bin/ares/darv_res.cgi?ico={{ meta.reg_no.value }}&amp;xml=1{% if lang == 'en' %}&amp;jazyk=en{% endif %}">{{ meta.reg_no.value }}</a><br>
</p>
</div>
<div class="w-100 d-block d-md-none"></div>
Expand Down

0 comments on commit d219b74

Please sign in to comment.