~ubuntu-branches/debian/sid/ledgersmb/sid

« back to all changes in this revision

Viewing changes to UI/am-edit-template.html

  • Committer: Package Import Robot
  • Author(s): Robert James Clay
  • Date: 2012-04-18 18:58:20 UTC
  • Revision ID: package-import@ubuntu.com-20120418185820-snrtpa696zhqm0z1
Tags: upstream-1.3.15
ImportĀ upstreamĀ versionĀ 1.3.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?lsmb INCLUDE 'ui-header.html' ?> 
 
2
<?lsmb PROCESS elements.html ?> 
 
3
<body>
 
4
<form method="post" action="<?lsmb form.script ?>">
 
5
  <?lsmb PROCESS textarea element_data={
 
6
  name => 'body',
 
7
  rows => 25,
 
8
  cols => 70,
 
9
  text => form.body,
 
10
  } ?>
 
11
<br />
 
12
<?lsmb FOREACH hidden IN hiddens.keys;
 
13
        PROCESS input element_data={
 
14
                type => 'hidden',
 
15
                name => hidden,
 
16
                value => hiddens.item(hidden)
 
17
                }; END ?>
 
18
<?lsmb FOREACH button IN buttons; PROCESS button element_data=button; END ?>
 
19
</form>
 
20
</body>
 
21
</html>
 
22