Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
No results found
Show changes
Commits on Source (4)
from datetime import date
TODAY = date.today()
SPONSORS = [
("SpeedPartner", "/images/sponsors/speedpartner.png", "https://www.speedpartner.de", date(2038, 12, 31)),
("Informatik aktuell", "/images/sponsors/informatik_aktuell.png", "https://www.informatik-aktuell.de/", date(2021, 12, 31)),
("Python Software-Verband e.V.", "/images/sponsors/pysv.png", "https://www.python-verband.org", date(2021, 7, 31)),
("Proxmox Server Solutions GmbH", "/images/sponsors/proxmox.png", "https://proxmox.com", date(2022, 4, 30)),
]
SPONSORSTEXTS = {
"de": "Wir bedanken uns bei unseren Sponsoren für die Unterstützung unserer Vereinsarbeit. Außerdem freuen wir uns immer über weitere Sponsoren, die ihr Engagement mit ihrem Logo hier bewerben möchten!",
}
static/images/sponsors/informatik_aktuell.png

5.83 KiB

static/images/sponsors/proxmox.png

6.21 KiB

static/images/sponsors/pysv.png

16.3 KiB

static/images/sponsors/speedpartner.png

26.7 KiB

......@@ -121,8 +121,10 @@
{{ SPONSORSTEXTS[DEFAULT_LANG] }}
{% endif %}
</p>
{% for image, url in SPONSOR_LOGOS %}
<a href="{{ url }}"><img src="{{ image }}" href="{{ url }}" alt="{{ url }}" class="sponsorslogo" /></a>
{% for alt, image, url, before in SPONSORS %}
{% if before >= TODAY %}
<a href="{{ url }}"><img src="{{ image }}" href="{{ url }}" alt="{{ alt }}" title="{{ alt }}" class="sponsorslogo" /></a>
{% endif %}
{% endfor %}
</div>
</div>
......