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
Resource
Available?
{% for resource in resources %}
{% if resource.is_available_for_user %}
Checkout
{% else %}
Due on {{ resource.next_available_date|format_date }}
{% endif %}
{{ resource.checked_out_items.count }} of {{ resource.max_checked_out }} are checked out.
To
Due date
Renewable?
{% for checked_out_item in resource.checked_out_items %}
{{ checked_out_item.user }}
{{ checked_out_item.due_on }}
{% if checked_out_item.is_renewable %}
{% endif %}
{% endfor %}
{% endfor %}
{% for checked_out_item in user_items %}
{{ checked_out_item }}
Checked out on:
{{ checked_out_item.checked_out_on|format_date }}
Available renewals:
{{ checked_out_item.renewals }}
Current due date:
{{ checked_out_item.due_on|format_date }}
{% endfor %}
{% if checkout %}
{{ checkout_title }}
Here are the credentials for accessing your instance:
{% for label, value in checkout_credentials.items %}
{{ label }}
{{ value }}
{% endfor %}
Be sure to
download
or otherwise record these before closing this dialog, they cannot be presented again.
If you lose these credentials, you will have to return this item, and checkout the resource again.