{% extends "mumbletemps/base.html" %} {% load i18n %} {% load humanize %} {% load timetags %} {% block mumbletemps %}
{% translate "Mumble Temporary Links" %}

{% translate 'Temp Links Give Access to mumble with the Guest Group for the preset time.' %}

{% translate 'Connected users will not be kicked at the end of this period.' %}

{% translate 'Templink users can be kicked in mumble by typing !kicktemps in mumble chat.' %}

{% translate 'There are no restrictions on who or how many can use a templink, share wisely.' %}

{% translate "Create New Link" %}

{% translate "Your link will be displayed on the next page for an easy copy and paste." %}

{% csrf_token %}
{% if tl %}
{% translate "New Link" %}

{% translate "Expires in" %}:

{{ SITE_URL }}{% url 'mumbletemps:join' tl.link_ref %}
{% endif %}
{% translate "Active Links" %}
{% for lnk in tl_list %} {% endfor %}
{% translate "Creator" %} {% translate "Key" %} {% translate "Time Left" %} {% translate "Copy" %} {% translate "Nuke" %}
{{ lnk.creator.character_name }} {{ lnk.creator.character_name }} {{ lnk.link_ref }} {% translate "Nuke Link!" %}
{% if ex_tl_list.count > 0 %}
{% translate "Expired Links" %}
{% for lnk in ex_tl_list %} {% endfor %}
{% translate "Creator" %} {% translate "Key" %} {% translate "Nuke" %}
{{ lnk.creator.character_name }} {{ lnk.creator.character_name }} {{ lnk.link_ref }} {% translate "Nuke Link!" %}
{% endif %} {% endblock mumbletemps %} {% block extra_javascript %} {% include 'bundles/clipboard-js.html' %} {% include "bundles/moment-js.html" with locale=True %} {% include "bundles/timers-js.html" %} {% endblock extra_javascript %}