{% extend 'nuit/base.html' topbar=True %} {% load shorty %} {% load static %} {% block title %}URL Shortener{% endblock %} {% block css %} {% endblock %} {% block scripts %} {% endblock %} {% block content %}

Shorten a URL

{% if request.previous_short_urls %}

That URL has already been shortened to:

Are you sure you wish to create a new short URL?

{% endif %}
{% if EXTERNAL_FLAG %} {% foundation_form form %} redirect {'show_label': False} path {'show_label': False, 'prefix': '{{redirect_base}}', 'prefix_small': 6, 'small': 12, 'medium': 9}; external {'switch': True} {% end_foundation_form %} {% else %} {% foundation_form form %} redirect {'show_label': False} path {'show_label': False, 'prefix': '{{redirect_base}}', 'prefix_small': 6} {% end_foundation_form %} {% endif %}
{% if path %}
Your URL has been shortened!

{% endif %}

Showing only your URLs. View all URLs.

{% if request.user.short_urls.exists %} {% if EXTERNAL_FLAG %}{% endif %} {% for url in short_urls %} {% if EXTERNAL_FLAG %} {% endif %} {% endfor %}
Short URL CreatedAvailable Externally 
{% build_short_url url.path %}
{{url.redirect|truncatechars:60}}
{{url.created|date:'d/m/Y'}} {{url.created|time:'H:i'}}
{% csrf_token %}
{% pagination_menu short_urls %} {% endif %}
{% endblock %}