i18n Buttons
This doc was last edited by webchick August 10, 2009.
plugin
upstream
Templates in the website are disabled now. Editing them will not have any effect on the live website.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
$def with (comment=None)
$ _ = i18n.get_namespace('/mode/edit')
<br /><br />
$:_.edit_summary<br />
<input type="text" name="_comment" style="width: 100%;" value="$comment" />
<div style="float: left; padding-top: 6px;">
<button class="edit" type="submit" value="$_.save" name="_save" title="$_.save">$_.save</button>
$if ctx.user and ctx.user.is_admin():
<button class="edit-delete" type="submit" value="$_.delete" name="_delete" title="$_.delete">$_.delete</button>
</div>
<br clear="both" /><br /> |