Last change
on this file since 30821 was
7342,
checked in by ddtddt, 14 years ago
|
[extensions] - rv_db_integrity - add localisation
|
-
Property svn:eol-style set to
LF
|
File size:
929 bytes
|
Rev | Line | |
---|
[3417] | 1 | <div class="titrePage"> |
---|
| 2 | <h2>DB Integrity check</h2> |
---|
| 3 | </div> |
---|
| 4 | |
---|
| 5 | |
---|
| 6 | <form method="post" action=""> |
---|
| 7 | |
---|
| 8 | <table class="table2"> |
---|
| 9 | <tr class="throw"> |
---|
[7342] | 10 | <td>{'Test'|@translate}</td> |
---|
| 11 | <td>{'Result'|@translate}</td> |
---|
[3417] | 12 | </tr> |
---|
| 13 | {foreach from=$reference_tests item=reference_test} |
---|
| 14 | <tr> |
---|
| 15 | <td> |
---|
| 16 | <input type="checkbox" name="{$reference_test.ID}" {$reference_test.CHECKED}> |
---|
| 17 | {$reference_test.LABEL} ({$reference_test.COUNT} references) |
---|
| 18 | </td> |
---|
| 19 | <td> |
---|
| 20 | {if isset($reference_test.result)} |
---|
| 21 | {if $reference_test.result>0} |
---|
| 22 | <span style="color:white;background-color:red">{$reference_test.result} FAILED</span> |
---|
| 23 | {else} |
---|
[7342] | 24 | {'Passed'|@translate} |
---|
[3417] | 25 | {/if} |
---|
| 26 | {/if} |
---|
| 27 | </td> |
---|
| 28 | </tr> |
---|
| 29 | {if isset($reference_test.errors)} |
---|
| 30 | <tr><td colspan="2"> |
---|
| 31 | {foreach from=$reference_test.errors item=error} |
---|
| 32 | {$error}<br/> |
---|
| 33 | {/foreach} |
---|
| 34 | </td></tr> |
---|
| 35 | {/if} |
---|
| 36 | {/foreach} |
---|
| 37 | </table> |
---|
| 38 | |
---|
| 39 | <p> |
---|
| 40 | <input type="submit" class="submit" value="{'Submit'|@translate}" name="submit" /> |
---|
| 41 | </p> |
---|
| 42 | |
---|
| 43 | </form> |
---|
Note: See
TracBrowser
for help on using the repository browser.