Hello,

Is there something within web2py that automatically converts html forms to 
html HELPER SYNTAX?

for example here is my form:
        <div id="checkout-area" style="display: none;">
        <h4><i class="icon-shopping-cart"></i> Secure Checkout</h4>
        <script type="text/javascript" 
src="https://js.stripe.com/v2/";></script>
        <div id="checkout-form" style="display: none;">
         <form id="CardForm">
             <div class="control-group">
             <label>Cardholder Name</label>
             <input id="CardName">
                        <span class="help-inline"></span>
                    </div>
                    
                    <div class="control-group">
             <label>Address</label>
             <input id="address">
                        <span class="help-inline"></span>
                    </div>
                    
                    <div class="control-group">
             <label>City</label>
             <input id="city">
                        <span class="help-inline"></span>
                    </div>
                    
                    <div class="control-group">
             <label>State</label>
             <input id="state">
                        <span class="help-inline"></span>
                    </div>
                    
                    <div class="control-group">
             <label>Zip Code</label>
             <input id="zip">
                        <span class="help-inline"></span>
                    </div>
                        
            <div id="div-card" class="control-group">
             <label>Card Number</label>
             <input id="CardNumber" placeholder="4242424242424242"/>
                 <span id="span-card" class="help-inline"></span>
                </div>
                
                <div id="div-exp" class="control-group">
             <label>Expiration</label>
            <input id="CardExpiration" placeholder="12/2013"/>
                    <span id="span-exp" class="help-inline"></span>
                    </div>
                    
                    <div id="div-cvc" class="control-group">
             <label>CVC Code</label>
             <input id="CardCVC" placeholder="123"/>
                    <span id="span-cvc" class="help-inline"></span>
                    </div>
                    
             <div class="form-actions">
             <button type="submit" class="btn btn-primary">Submit</button>
                    </div>
</form>
        </div>

and I want to convert it something like this: 
DIV(H4(I(_class='icon-shopping-cart')), _id="checkout_area", 
_style="display: none;"
)

What is the most efficient way to do this? 

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to