Prepare profile and billing to be translated.
This commit is contained in:
parent
9866f00d7f
commit
953415f7df
|
@ -4,7 +4,7 @@
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
<h1 class="service-name">{% trans "Billing" %}</h1>
|
<h1 class="service-name">{% trans "Billing" %}</h1>
|
||||||
<p class="service-description">Little description of what to be expected...</p>
|
<p class="service-description">{% trans "Little description of what billing section is." %}</p>
|
||||||
|
|
||||||
<table class="table service-list">
|
<table class="table service-list">
|
||||||
<colgroup>
|
<colgroup>
|
||||||
|
@ -16,11 +16,11 @@
|
||||||
</colgroup>
|
</colgroup>
|
||||||
<thead class="thead-dark">
|
<thead class="thead-dark">
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="col">Number</th>
|
<th scope="col">{% trans "Number" %}</th>
|
||||||
<th scope="col">Bill date</th>
|
<th scope="col">{% trans "Bill date" %}</th>
|
||||||
<th scope="col">Type</th>
|
<th scope="col">{% trans "Type" %}</th>
|
||||||
<th scope="col">Total</th>
|
<th scope="col">{% trans "Total" %}</th>
|
||||||
<th scope="col">Download PDF</th>
|
<th scope="col">{% trans "Download PDF" %}</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|
|
@ -3,12 +3,12 @@
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
<h1 class="service-name">Profile</h1>
|
<h1 class="service-name">{% trans "Profile" %}</h1>
|
||||||
<p class="service-description">Little description of what to be expected...</p>
|
<p class="service-description">{% trans "Little description of what profile section is." %}</p>
|
||||||
|
|
||||||
<div class="card-deck">
|
<div class="card-deck">
|
||||||
<div class="card card-profile">
|
<div class="card card-profile">
|
||||||
<h5 class="card-header">User information</h5>
|
<h5 class="card-header">{% trans "User information" %}</h5>
|
||||||
<div class="card-body row">
|
<div class="card-body row">
|
||||||
<div class="col-md">
|
<div class="col-md">
|
||||||
<div class="border-primary rounded-circle d-inline-block p-1" style="background-color: white; border: 5px solid grey">
|
<div class="border-primary rounded-circle d-inline-block p-1" style="background-color: white; border: 5px solid grey">
|
||||||
|
@ -18,12 +18,12 @@
|
||||||
<div class="col-md-9">
|
<div class="col-md-9">
|
||||||
<p class="card-text">{{ profile.username }}</p>
|
<p class="card-text">{{ profile.username }}</p>
|
||||||
<p class="card-text">{{ profile.type }}</p>
|
<p class="card-text">{{ profile.type }}</p>
|
||||||
<p class="card-text">Preferred language: {{ profile.language }}</p>
|
<p class="card-text">{% trans "Preferred language:" %} {{ profile.language|language_name_local }}</p>
|
||||||
</div>
|
</div>
|
||||||
{% comment %}
|
{% comment %}
|
||||||
<!-- disabled until set_password is implemented -->
|
<!-- disabled until set_password is implemented -->
|
||||||
<div class="col-md-12 text-right">
|
<div class="col-md-12 text-right">
|
||||||
<a class="btn btn-primary pl-5 pr-5" href="#">Set new password</a>
|
<a class="btn btn-primary pl-5 pr-5" href="#">{% trans "Set new password" %}</a>
|
||||||
</div>
|
</div>
|
||||||
{% endcomment %}
|
{% endcomment %}
|
||||||
</div>
|
</div>
|
||||||
|
@ -31,7 +31,7 @@
|
||||||
|
|
||||||
{% with profile.billing as contact %}
|
{% with profile.billing as contact %}
|
||||||
<div class="card card-profile">
|
<div class="card card-profile">
|
||||||
<h5 class="card-header">Billing information</h5>
|
<h5 class="card-header">{% trans "Billing information" %}</h5>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<div class="form-group">{{ contact.name }}</div>
|
<div class="form-group">{{ contact.name }}</div>
|
||||||
<div class="form-group">{{ contact.address }}</div>
|
<div class="form-group">{{ contact.address }}</div>
|
||||||
|
@ -45,7 +45,7 @@
|
||||||
</div>
|
</div>
|
||||||
<!-- payment method -->
|
<!-- payment method -->
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
payment method: {{ payment.method }}
|
{% trans "payment method:" %} {{ payment.method }}
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
{% if payment.method == 'SEPADirectDebit' %}
|
{% if payment.method == 'SEPADirectDebit' %}
|
||||||
|
|
Loading…
Reference in New Issue