aboutsummaryrefslogtreecommitdiffstats
path: root/admin/themes/default/template/check_integrity.tpl
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2010-03-13 00:00:52 +0000
committerplegall <plg@piwigo.org>2010-03-13 00:00:52 +0000
commit14778ce673277f2df41f963aa70df1cbed427294 (patch)
tree8c723d4d9827876dbf19d2bd581405fc50910860 /admin/themes/default/template/check_integrity.tpl
parentc396f08708d431c6f7e8656eaca4fd8e440fdd39 (diff)
feature 1502: based on Dotclear model, P@t has reorganized the way Piwigo
manages template/theme in a simpler "theme only level" architecture. It supports multiple level inheritance. git-svn-id: http://piwigo.org/svn/trunk@5123 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/themes/default/template/check_integrity.tpl')
-rw-r--r--admin/themes/default/template/check_integrity.tpl83
1 files changed, 83 insertions, 0 deletions
diff --git a/admin/themes/default/template/check_integrity.tpl b/admin/themes/default/template/check_integrity.tpl
new file mode 100644
index 000000000..7cf566123
--- /dev/null
+++ b/admin/themes/default/template/check_integrity.tpl
@@ -0,0 +1,83 @@
+<dl>
+ <dt>{'Check integrity'|@translate}</dt>
+ <dd>
+ <ul>
+ <form method="post" name="c13y" id="c13y" action="">
+ <fieldset>
+ <table class="table2">
+ <tr class="throw">
+ <th></th>
+ <th>{'Anomaly'|@translate}</th>
+ <th>{'Correction'|@translate}</th>
+ </tr>
+ {if isset($c13y_list)}
+ {foreach from=$c13y_list item=c13y name=c13y_loop}
+ <tr class="{if $smarty.foreach.c13y_loop.index is odd}row1{else}row2{/if}">
+ <td>
+ {if $c13y.can_select}
+ <input type="checkbox" name="c13y_selection[]" value="{$c13y.id}" id="c13y_selection-{$c13y.id}"><label for="c13y_selection-{$c13y.id}"></label>
+ {/if}
+ </td>
+ <td><label for="c13y_selection-{$c13y.id}">{$c13y.anomaly}</label></td>
+ <td>
+ <label for="c13y_selection-{$c13y.id}">
+ {if $c13y.show_ignore_msg}
+ {'The anomaly will be ignored until next application version'|@translate}
+ <br>
+ {'Correction the anomaly will cancel the fact that it\'s ignored'|@translate}
+ {/if}
+ {if $c13y.show_correction_fct}
+ {'Automatic correction'|@translate}
+ {/if}
+ {if $c13y.show_correction_bad_fct}
+ {'Impossible automatic correction'|@translate}
+ {/if}
+ {if $c13y.show_correction_success_fct}
+ {'Correction applied with success'|@translate}
+ {/if}
+ {if !empty($c13y.correction_error_fct)}
+ {'Correction applied with error'|@translate}
+ <br>
+ {$c13y.c13y.correction_error_fct}
+ {/if}
+ {if !empty($c13y.correction_msg)}
+ {if $c13y.show_correction_success_fct or !empty($c13y.correction_error_fct) or $c13y.show_correction_fct or $c13y.show_correction_bad_fct }
+ <br>
+ {/if}
+ {$c13y.correction_msg|@nl2br}
+ {/if}
+ </label>
+ </td>
+ </tr>
+ {/foreach}
+ {/if}
+ </table>
+
+ <p>
+ {if $c13y_show_submit_ignore}
+ <a href="#" onclick="SelectAll(document.getElementById('c13y')); return false;">{'Check all'|@translate}</a>
+ / <a href="#" onclick="DeselectAll(document.getElementById('c13y')); return false;">{'Uncheck all'|@translate}</a>
+ {/if}
+ {if isset($c13y_do_check)}
+ / <a href="#" onclick="DeselectAll(document.getElementById('c13y'));
+ {foreach from=$c13y_do_check item=ID}
+ document.getElementById('c13y_selection-{$ID}').checked = true;
+ {/foreach}
+ return false;">{'Check automatic corrections'|@translate}</a>
+ {/if}
+ </p>
+
+ <p>
+ {if $c13y_show_submit_automatic_correction}
+ <input class="submit" type="submit" value="{'Apply selected corrections'|@translate}" name="Apply selected corrections" {$TAG_INPUT_ENABLED}>
+ {/if}
+ {if $c13y_show_submit_ignore}
+ <input class="submit" type="submit" value="{'Ignore selected anomalies'|@translate}" name="Ignore selected anomalies" {$TAG_INPUT_ENABLED}>
+ {/if}
+ <input class="submit" type="submit" value="{'Refresh'|@translate}" name="Refresh">
+ </p>
+
+ </fieldset>
+ </form>
+ </ul>
+ </dd>