]> git.sur5r.net Git - contagged/blob - templates/import.tpl
Merge pull request #15 from cweiske/master
[contagged] / templates / import.tpl
1
2 <form action="import.php" method="post" enctype="multipart/form-data" accept-charset="utf-8" id="import">
3     <fieldset>
4         <legend>{$lang.upload}</legend>
5         <label for="upload">{$lang.msg_uploadvcf}:</label>
6         <input name="userfile" type="file" class="upload" id="upload" />
7         <input type="submit" value="{$lang.upload}" class="button" />
8     </fieldset>
9 </form>
10
11 <table cellspacing="0" cellpadding="0" width="100%" align="center" class="list">
12 {if $list == ''}
13     <tr>
14       <td align="center">
15           {$error}
16       </td>
17     </tr>
18 {else}
19     {* $list is a concatenation of multiple importVCF_entry.tpl *}
20     {$list}
21 {/if}
22 </table>