{% extends "base.html" %} {% block title %}Home — {{ service_name }}{% endblock %} {# hide user area in navbar #} {% block navbar_userarea %} {% if current_user.is_authenticated %} {{ super() }} {% endif %} {% endblock %} {% block content %}

Warning: This installation of {{ service_name }}, the sample and measurement metadata database, is still under active development. While we try to keep everything running smoothly, the system may be offline for several minutes when it is updated. If you have further questions or encounter any issues, please let us know. Thank you!

{% if service_name == 'iffSamples' and config['SERVER_NAME'] != 'iffsamples.fz-juelich.de' %}

Warning: This is a preview installation of {{ service_name }}, the sample and measurement metadata database at PGI / JCNS. It is used for development, may be offline at any time and the data will be deleted!

{% endif %} {% if not current_user.is_authenticated %}

Welcome to {{ service_name }}

{{ service_description }}

{% else %}

Welcome to {{ service_name }}

{{ service_description }}

{% for action_type in get_action_types() %} {% if action_type.show_on_frontpage %}
{% if not current_user.is_readonly %} {% endif %}
{% endif %} {% endfor %}
{% endif %} {% endblock %}