Root/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | {extends "idf/gadmin/projects/base.html"} {block body} {if $form.errors} < div class = "px-message-error" > < p >{trans 'The form contains some errors. Please correct them to delete the project.'}</ p > {if $form.get_top_errors} {$form.render_top_errors|unsafe} {/if} </ div > {/if} < h2 {if !$form.get_top_errors} class = "top" {/if}>{trans 'Project Statistics'}</ h2 > < table summary = " " class = "recent-issues minsize" > < thead > < tr >< th >< span class = "px-header-title" >{trans 'Tab'}</ span ></ th >< th >< span class = "px-header-title" >{trans 'Number'}</ span ></ th ></ tr > </ thead > < tbody > < tr >< td class = "right" >{trans 'Downloads'}</ td >< td class = "a-c" >{$stats['downloads']}</ td ></ tr > < tr >< td class = "right" >{trans 'Code reviews'}</ td >< td class = "a-c" >{$stats['reviews']}</ td ></ tr > < tr >< td class = "right" >{trans 'Commits'}</ td >< td class = "a-c" >{$stats['commits']}</ td ></ tr > < tr >< td class = "right" >{trans 'Issues'}</ td >< td class = "a-c" >{$stats['issues']}</ td ></ tr > < tr >< td class = "right" >{trans 'Documentation pages'}</ td >< td class = "a-c" >{$stats['docpages']}</ td ></ tr > </ tbody > </ table > < h2 >{trans 'Delete Project'}</ h2 > < form method = "post" action = "." > < table class = "form" summary = "" > < tr > < td > </ td > < td > {blocktrans}Confirmation code to confirm the deletion of the project: < em >{$code}</ em >.{/blocktrans}< br /> < br /> < strong >{$form.f.code.labelTag}:</ strong > {if $form.f.code.errors}{$form.f.code.fieldErrors}{/if} {$form.f.code|unsafe} </ td > </ tr > < tr > < td > </ td > < td > {if $form.f.agree.errors}{$form.f.agree.fieldErrors}{/if} {$form.f.agree|unsafe} < strong >{$form.f.agree.labelTag}</ strong > </ td > </ tr > < tr > < td > </ td > < td > < input type = "submit" value = "{trans 'Delete Project'}" name = "submit" /> | < a href = "{url 'IDF_Views_Admin::projectUpdate', array($project.id)}" >{trans 'Cancel'}</ a >{if $stats['total'] > 200}< br /> < span class = "helptext" >{trans 'For large projects, the suppression can take a while, please be patient.'}</ span >{/if} </ td > </ tr > </ table > </ form > {/block} {block context} < div class = "issue-submit-info" > < p >{blocktrans} < strong >Attention!</ strong > Deleting a project is a one second operation with the consequences that < strong >all the data</ strong > related to the project < strong >will be deleted</ strong >. {/blocktrans}</ p > </ div > {/block} |