{% extends "base.html" %} {% load staticfiles %} {% block content %}
{% if not request.user.is_anonymous %} {% if not request.user.userprofile.ssh_public_key %} {% endif %} {% else %} {% endif %}
{% csrf_token %}

About Us

{% block about_us %}

Here is some information about us!

{% endblock about_us %} {% block welcome_back %} {% if user.is_authenticated %}

Welcome Back!

{% if bookings %}
These are your current bookings:
{% else %}
You have no current bookings
{% endif %} {% endif %} {% endblock welcome_back %}

Get Started

{% if request.user.is_anonymous %} {% if LFID %}

To get started, please log in with Linux Foundation ID

{% else %}

To get started, please log in with your Linux Foundation Jira account

{% endif %} {% else %} {% block btnGrp %}

To get started, book a server below:

Book a Resource

PTLs can use our advanced options to book multi-node pods. If you are a PTL, you may use the options below:

{% endblock btnGrp %} {% endif %}
{% if not request.user.is_anonymous %} {% block returningUsers %}

Returning Users

If you're a returning user, some of the following options may be of interest:

My Bookings {% if manager == True %} {% endif %}
{% endblock returningUsers %} {% endif %}
{% csrf_token %}
{% endblock content %}