{% load i18n %}
<iframe id="upload_target" name="upload_target" src="" style="display: none; width:0;height:0"></iframe>
<div id="add_bg" style="filter:alpha(opacity:80);KHTMLOpacity:0.80;MozOpacity:0.80;opacity:0.80; background:#000; width:100%; height: 100%; position:absolute; top:0px; left:0px; display:none;">&nbsp;</div>
<!--<div id="add_box" style="left:50%; top:200px; margin-left: -450px; width: 900px; position: absolute; background: #FFF; padding: 10px 10px 10px 10px; display:none;">-->
  
  <!--<div style="width: 900px; text-align: right;"><b onclick="AddBox();">[Close]</b></div>-->
<div id="add_box" class="myform">
<form id="add_form" action="/json/add_package" method="POST" enctype="multipart/form-data">
<h1>{% trans "Add Package" %}</h1>
<p>{% trans "Paste your links or upload a container." %}</p>
<label>{% trans "Name" %}
<span class="small">{% trans "The name of the new package." %}</span>
</label>
<input id="add_name" name="add_name" type="text" size="20" />

<label>{% trans "Links" %}
<span class="small">{% trans "Paste your links here" %}</span>
</label>
<textarea rows="5" name="add_links" id="add_links"></textarea>

<label>{% trans "File" %}
<span class="small">{% trans "Upload a container." %}</span>
</label>
<input type="file" name="add_file" id="add_file"/>

<label>{% trans "Destination" %}
</label>
<span class="cont">
    {% trans "Queue" %}
    <input type="radio" name="add_dest" id="add_dest" value="1" checked="checked"/>
    {% trans "Collector" %}
    <input type="radio" name="add_dest" id="add_dest2" value="0"/>
</span>

<button type="submit">{% trans "Add Package" %}</button>
<button id="add_reset" style="margin-left:0px;" type="reset">{% trans "Reset" %}</button>
<div class="spacer"></div>

</form>

</div>