]> WPIA git - gigi.git/blob - src/club/wpia/gigi/output/NameInput.templ
upd: rename package name and all references to it
[gigi.git] / src / club / wpia / gigi / output / NameInput.templ
1 <div class="panel panel-info panel-activatable">
2   <div class="panel-heading"><h3><input id="western-name" type="radio" name="name-type" value="western"<? if($western) { ?>checked<? } ?>> <label for="western-name"><?=_First-Last-Suffix Name?></label></h3></div>
3   <div class="panel-body">
4     <h4><?=_Structure?></h4>
5     <?=_Name consists of one or more first names, one or more last names and any amount of suffixes?>
6     <h4><?=_Variant Generation?></h4>
7 <ul>
8   <li><?=_First names may be swapped?></li>
9   <li><?=_The first Last Name is mandatory, any other ones may be omitted, but must stay in sequence.?></li>
10   <li><?=_Any Suffixes may be omitted, but must stay in sequence.?></li>
11 </ul>
12 <div class="form-group">
13   <input type='text' name='fname' class="form-control" placeholder="<?=_First Names?>" value="<?=$fname?>">
14 </div>
15 <div class="form-group">
16   <input type='text' name='lname' class="form-control" placeholder="<?=_Last Names?>" value="<?=$lname?>">
17 </div>
18 <div class="form-group">
19   <input type='text' name='suffix' class="form-control" placeholder="<?=_Suffixes?>" value="<?=$suffix?>">
20 </div>
21     
22   </div>
23 </div>
24
25
26 <div class="panel panel-info panel-activatable">
27   <div class="panel-heading"><h3><input id="single-name" type="radio" name="name-type" value="single"<? if($single) { ?>checked<? } ?>> <label for="single-name"><?=_Single Name?></label></h3></div>
28   <div class="panel-body">
29     <h4><?=_Structure?></h4>
30 <?=_Name of one part?>
31 <h4><?=_Variant Generation?></h4>
32 <ul>
33   <li><?=_Name has no variants?></li>
34 </ul>
35 <div class="form-group">
36   <input type='text' name='name' class="form-control" placeholder="<?=_Name?>" value="<?=$name?>">
37 </div>
38   </div>
39 </div>
40
41