add a new view and plain form to upload an archive; rename the internal URLs, handlers and templates from submit to create for single downloads and also add a help section about the new format as well as a detailed FAQ entry. Archive files get a bigger upload limit (default: 20MB). Next up: archive uploading, validation and processing.
12 lines
583 B
HTML
12 lines
583 B
HTML
{extends "idf/base.html"}
|
|
{block tabdownloads} class="active"{/block}
|
|
{block subtabs}
|
|
<div id="sub-tabs">
|
|
<a {if $inDownloads}class="active" {/if}href="{url 'IDF_Views_Download::index', array($project.shortname)}">{trans 'Downloads'}</a>
|
|
{if $isOwner or $isMember}
|
|
| <a {if $inCreate}class="active" {/if}href="{url 'IDF_Views_Download::create', array($project.shortname)}">{trans 'New Download'}</a>
|
|
| <a {if $inCreateFromArchive}class="active" {/if}href="{url 'IDF_Views_Download::createFromArchive', array($project.shortname)}">{trans 'Upload Archive'}</a>
|
|
{/if}
|
|
</div>
|
|
{/block}
|