- From: Thomas Gambet via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 06 Oct 2009 16:31:53 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/WebContent/WEB-INF/resources/templates
In directory hutz:/tmp/cvs-serv13822/WebContent/WEB-INF/resources/templates
Added Files:
language.form.vm
Log Message:
new template
--- NEW FILE: language.form.vm ---
#set ($title = "Unicorn - Translations")
#set ($css = ['base_ucn.css'])
#set ($js = ['mootools-1.2.3-core-nc.js', 'mootools-1.2.3.1-more.js', 'w3c_unicorn_languages.js'])
#parse('head.vm')
#if ($messages)
#displayMessages($messages)
#end
<div id="translations">
<form method="post" action="./translations">
<!--<label for="">Name<input type="text" name="" value="" /></label>
<label for="">Email address<input type="text" name="" value="" /></label>
<label for="">Comments<textarea name="" value=""></textarea></label>-->
<table style="width:100%">
<thead>
<tr>
<th scope="col" style="width:33%">$defaultProps.get("language") properties</th>
#set($percent = 100 * $math.div($prop.size(), $defaultProps.size()))
<th scope="col">$prop.get("language") $percent.intValue()%</th>
</tr>
</thead>
<tbody>
#foreach($key in $defaultProps.keySet())
#if ($key != "lang" && $key != "language")
<tr>
<th class="property_name" scope="row">$key <p>$!esc.html($defaultProps.get($key))</p></th>
#foreach($prop in $languageProps)
<td #if(!$prop.get($key))class="missing"#end><input style="padding:0.3em; width:98%" type="text" name="$key" value="$!esc.html($!prop.get($key))" /></td>
#end
</tr>
#end
#end
</tbody>
</table>
<fieldset>
<div class="submit">
<input type="submit" value="Submit" />
</div>
</fieldset>
</form>
</div>
#parse('footer.vm')
Received on Tuesday, 6 October 2009 16:31:58 UTC