{% extends 'library/base.html' %} {% load markdown_deux_tags %} {% load formatting_filters %} {% comment %} # Copyright © 2016 SUSE LLC, James Mason . # # This file is part of openbare. # # openbare is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # openbare is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with openbare. If not, see . {% endcomment %} {% block main %}

openbare

Public Cloud Demo Account Library

{% if not user or user.is_anonymous %}

{% for backend in backends.backends %} Login via {{ backend }} {% endfor %}

{% endif %}
{% if not user or user.is_anonymous %}

Welcome!

What is openbare?
openbare is a digital asset library system. Digital assets, such as online accounts, e-books or software subscriptions can be made available for 'check out', similar to physical libraries.
Who's providing this?
This openbare instance is operated by {{ host.name }}. {% if host.payment_statement %} Any costs associated with the digital assets provided through this openbare instance are handled as follows:
{{ host.payment_statement }}
{% endif %}
Is openbare open source?
Yes! openbare is licensed under the GPLv3 license. You may view the source, file any bugs or enhancement requests, or help improve openbare through our github project: https://github.com/openbare/openbare
{% endif %} {% if user and not user.is_anonymous %}

Library resources

{% for resource in resources %} {% endfor %}
Resource Available?
{% if resource.is_available_for_user %} Checkout {% else %} Due on {{ resource.next_available_date|format_date }} {% endif %}

Checked out to me

{% for checked_out_item in user_items %} {% endfor %}
Resource Due date
{{ checked_out_item.due_on|format_date }} {% if checked_out_item.is_renewable %} Renew {% else %} {% endif %} Return
{% for resource in resources %} {% endfor %} {% for checked_out_item in user_items %} {% endfor %} {% if checkout %} {% endif %} {% endif %} {% endblock %} {% block js %} $('#checkout_credentials').modal('show'); {% endblock %}