|
Revision 3609, 0.5 KB
(checked in by patdenice, 4 years ago)
|
|
Convert all php and tpl files in Unix format for my plugins.
|
| Line | |
|---|
| 1 | <div class="titrePage"> |
|---|
| 2 | <h2>PWG Stuffs</h2> |
|---|
| 3 | </div> |
|---|
| 4 | |
|---|
| 5 | <form method="post" action="" class="general"> |
|---|
| 6 | |
|---|
| 7 | <fieldset> |
|---|
| 8 | <legend>{'stuffs_add_mod'|@translate}</legend> |
|---|
| 9 | |
|---|
| 10 | <table> |
|---|
| 11 | {foreach from=$add_module item=module} |
|---|
| 12 | <tr> |
|---|
| 13 | <td><input type="radio" value="{$module.MODULE}" name="module"/> |
|---|
| 14 | <b>{$module.NAME}</b> : {$module.DESC}</td> |
|---|
| 15 | </tr> |
|---|
| 16 | {/foreach} |
|---|
| 17 | </table> |
|---|
| 18 | <br> |
|---|
| 19 | <div style="text-align:center;"> |
|---|
| 20 | <input class="submit" name="addModule" type="submit" value="{'stuffs_add_mod'|@translate}" {$TAG_INPUT_ENABLED} /> |
|---|
| 21 | </div> |
|---|
| 22 | |
|---|
| 23 | </fieldset> |
|---|
| 24 | |
|---|
| 25 | </form> |
|---|