mirror of
https://github.com/safing/web
synced 2025-09-01 02:29:02 +00:00
Add custom parameter
This commit is contained in:
parent
690613553e
commit
011d77adb9
2 changed files with 15 additions and 8 deletions
|
@ -109,6 +109,8 @@
|
||||||
- year: 2018-2019
|
- year: 2018-2019
|
||||||
items:
|
items:
|
||||||
- type: funding
|
- type: funding
|
||||||
|
custom: "Received continuous personal funding"
|
||||||
|
|
||||||
- name: Personal Investment
|
- name: Personal Investment
|
||||||
description: |
|
description: |
|
||||||
We invest our personal time and money to further push the project and company. Starting from 2017, and drastically increasing over the next years, we personally invested over 200.000€ in value.
|
We invest our personal time and money to further push the project and company. Starting from 2017, and drastically increasing over the next years, we personally invested over 200.000€ in value.
|
||||||
|
@ -117,6 +119,8 @@
|
||||||
- year: 2019
|
- year: 2019
|
||||||
items:
|
items:
|
||||||
- type: funding
|
- type: funding
|
||||||
|
custom: "Invested over 200.000€ in value"
|
||||||
|
|
||||||
# Total Numbers of Grants/Loans Image
|
# Total Numbers of Grants/Loans Image
|
||||||
#
|
#
|
||||||
# RECEIVED + In Prospect => Total
|
# RECEIVED + In Prospect => Total
|
||||||
|
|
|
@ -17,8 +17,7 @@ redirect_from:
|
||||||
personal risks instead of selling parts of our company for easy money.
|
personal risks instead of selling parts of our company for easy money.
|
||||||
<br>
|
<br>
|
||||||
<br>
|
<br>
|
||||||
The legal entity behind Safing is <i>Safing ICS Technologies GmbH</i>, a
|
The legal entity behind Safing is <i>Safing ICS Technologies GmbH</i>, a private company registered in Austria.
|
||||||
private company registered in Austria.
|
|
||||||
</p>
|
</p>
|
||||||
<a class="btn-secondary" href="{{ site.company_agreement_url }}">View public registry</a>
|
<a class="btn-secondary" href="{{ site.company_agreement_url }}">View public registry</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -84,12 +83,16 @@ redirect_from:
|
||||||
<span class="card-influence-date">{{ year.year }}</span>
|
<span class="card-influence-date">{{ year.year }}</span>
|
||||||
{% for item in year.items %}
|
{% for item in year.items %}
|
||||||
<span class="card-influence-amount">
|
<span class="card-influence-amount">
|
||||||
{% if item.status == "completed" %}
|
{% if item.custom != null %}
|
||||||
<span>Received</span>
|
<span>{{ item.custom }}</span>
|
||||||
{% endif %}
|
{% else %}
|
||||||
<span class="font-extrabold">{{ item.amount }}€ {{ item.type }}</span>
|
{% if item.status == "completed" %}
|
||||||
{% if item.status == "open" %}
|
<span>Received</span>
|
||||||
<small>held out in prospect</small>
|
{% endif %}
|
||||||
|
<span class="font-extrabold">{{ item.amount }}€ {{ item.type }}</span>
|
||||||
|
{% if item.status == "open" %}
|
||||||
|
<small>held out in prospect</small>
|
||||||
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</span>
|
</span>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
Loading…
Add table
Reference in a new issue