| Line | |
|---|
| 1 | #set ($noEscape_title = "Unicorn - Translations") |
|---|
| 2 | #set ($css = ['base_ucn.css']) |
|---|
| 3 | #parse('head.vm') |
|---|
| 4 | |
|---|
| 5 | <table> |
|---|
| 6 | <thead> |
|---|
| 7 | <tr> |
|---|
| 8 | <th scope="col">Property</th> |
|---|
| 9 | #foreach($prop in $languageProps) |
|---|
| 10 | <th scope="col">$prop.get("language")</th> |
|---|
| 11 | #end |
|---|
| 12 | </tr> |
|---|
| 13 | </thead> |
|---|
| 14 | <tbody> |
|---|
| 15 | #foreach($key in $defaultProps.keySet()) |
|---|
| 16 | <tr> |
|---|
| 17 | <th scope="row">$key <p>$esc.html($defaultProps.get($key))</p></th> |
|---|
| 18 | #foreach($prop in $languageProps) |
|---|
| 19 | <td title="$esc.html($!prop.get($key))">#if($prop.get($key))true#{else}false#end</td> |
|---|
| 20 | #end |
|---|
| 21 | </tr> |
|---|
| 22 | #end |
|---|
| 23 | </tbody> |
|---|
| 24 | </table> |
|---|
| 25 | |
|---|
| 26 | #parse('footer.vm') |
|---|