Blame view

mobile/source/modules/users/tmpl/control_points/main.html 786 Bytes
a1684257   Administrator   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
  
  
    <ul class="top_nav">
    	<li ><a  href="${MAIN_URL}" >${SITE}</a></li>
  		<li ><a  href="${ADMIN_URL}" >${ADMIN_PAGE}</a></li>
  		<li ><a  href="${URL_USERS_CONTROL_POSTS}" >${M_USERS_NAME}</a></li>
  		<li class="current" >${M_USERS_POINTS}</li>
  	</ul>
  	
  	<div style="border:1px solid #DBDBDB;background-color:#FAFAFA;padding:5px;">
  	
  	
  	<form method="post">
  	<input type="hidden" name="send" value="1" />
  	<table width="100%" align="center">
  		<tal:block tal:repeat="r points">
  		<tr>
  			<td width="50%" style="text-align:right" >${r/lang}</td>
  			<td valign="top">&nbsp;
  			<input type="text" name="${r/name}" value="${r/value}"  /> </td>
  		</tr>
  		</tal:block>
  		
  		
  	</table>
  	
  	<br/>
  	<div style="text-align:center"><input type="submit" value="${SAVE}" /></div>
  	</form>
  	</div>