{% extends "base.html" %} {% load humanize %} {% block style %} body { font-family: Ubuntu, sans-serif; } #subtd { text-align: right; } {% endblock %} {% block script %} {% endblock %} {% block content %}

Give someone else an upload URL for my personal cloud

Here you can create a place for other people to upload to your Ubuntu One account. You'll get a URL; give that URL to someone else, and they can use it to upload files to your account. A URL can be password-protected, or only valid for a certain time, or both.

{% csrf_token %} {{form.as_table}}

Existing uploader URLs

{% if uploaders %} {% for u in uploaders %} {% endfor %}
Where it uploads to in my personal cloud Expires Password protected URL to give to people
{{u.name}} My Storage / Ubuntu One / u1to / {{u.slug}} {% if u.expires %} {{u.expires}} ({{u.expires|naturaltime}}) {% else %} Never {% endif %} {{u.protected}} {{u.full_url}}
{% csrf_token %}
{% else %}

None

{% endif %} {% endblock %}