1
0
Fork 0
mirror of https://github.com/safing/web synced 2025-04-11 14:39:09 +00:00

Add custom parameter

This commit is contained in:
Luke 2022-01-13 15:20:28 +01:00
parent 690613553e
commit 011d77adb9
2 changed files with 15 additions and 8 deletions

View file

@ -109,6 +109,8 @@
- year: 2018-2019
items:
- type: funding
custom: "Received continuous personal funding"
- name: Personal Investment
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.
@ -117,6 +119,8 @@
- year: 2019
items:
- type: funding
custom: "Invested over 200.000€ in value"
# Total Numbers of Grants/Loans Image
#
# RECEIVED + In Prospect => Total

View file

@ -17,8 +17,7 @@ redirect_from:
personal risks instead of selling parts of our company for easy money.
<br>
<br>
The legal entity behind Safing is <i>Safing ICS Technologies GmbH</i>, a
private company registered in Austria.
The legal entity behind Safing is <i>Safing ICS Technologies GmbH</i>, a private company registered in Austria.
</p>
<a class="btn-secondary" href="{{ site.company_agreement_url }}">View public registry</a>
</div>
@ -84,12 +83,16 @@ redirect_from:
<span class="card-influence-date">{{ year.year }}</span>
{% for item in year.items %}
<span class="card-influence-amount">
{% if item.status == "completed" %}
<span>Received</span>
{% endif %}
<span class="font-extrabold">{{ item.amount }}€ {{ item.type }}</span>
{% if item.status == "open" %}
<small>held out in prospect</small>
{% if item.custom != null %}
<span>{{ item.custom }}</span>
{% else %}
{% if item.status == "completed" %}
<span>Received</span>
{% endif %}
<span class="font-extrabold">{{ item.amount }}€ {{ item.type }}</span>
{% if item.status == "open" %}
<small>held out in prospect</small>
{% endif %}
{% endif %}
</span>
{% endfor %}