form.add_button(value,link)

This commit is contained in:
Massimo Di Pierro
2012-04-30 13:45:29 -05:00
parent fd82097bfc
commit 437ff3e464
3 changed files with 10 additions and 12 deletions
+1 -1
View File
@@ -1 +1 @@
Version 1.99.7 (2012-04-30 11:39:06) dev
Version 1.99.7 (2012-04-30 13:45:03) dev
+7 -11
View File
@@ -1,17 +1,13 @@
{{extend 'layout.html'}}
<h2>{{=T( request.args(0).replace('_',' ').capitalize() )}}</h2>
<div id="web2py_user_form">
{{=form}}
{{if request.args(0)=='login':}}
{{if not 'register' in auth.settings.actions_disabled:}}
<br/>
<a href="{{=URL(args='register')}}">{{=T('Register')}}</a>
{{pass}}
{{if not 'request_reset_password' in auth.settings.actions_disabled:}}
<br/>
<a href="{{=URL(args='request_reset_password')}}">{{=T('Lost Password')}}</a>
{{pass}}
{{pass}}
{{if request.args(0)=='login':}}
{{if not 'register' in auth.settings.actions_disabled:}}
{{form.add_button(T('Register'),URL(args='register'))}}
{{pass}}
{{form.add_button(T('Lost Password'),URL(args='request_reset_password'))}}
{{pass}}
{{=form}}
</div>
<script language="javascript"><!--
jQuery("#web2py_user_form input:visible:enabled:first").focus();
+2
View File
@@ -2006,6 +2006,8 @@ class FORM(DIV):
self.validate(**kwargs)
return self
def add_button(self,value,url,_class=None):
self[0][-1][1].append(INPUT(_type="button",_value=value,_onclick="window.location='%s';return false" % url,_class=_class))
class BEAUTIFY(DIV):