On Wednesday, February 12, 2014 9:48:34 PM UTC-5, Cliff Kachinske wrote:
>
> response.flash = SPAN('flash message goes here', _class='whatever')
>

And since this case involves a div and a button, to avoid having to repeat 
all that every time, just write a function that takes a message and a flash 
type and generates the appropriate helper object:

def flash(message, type='info'):
    return DIV(BUTTON(XML('×'), _type='button', _class='close', data=
dict(dismiss='alert')),
               message, class='alert alert-%s' % type)

Anthony

 

> On Wednesday, February 12, 2014 8:54:46 PM UTC-5, User wrote:
>>
>> I am using bootstrap 2.3.2 and I would like to use Bootstrap css alert 
>> classes to style response.flash.  These include:
>> alert
>> alert-error
>> alert-success
>> alert-info
>>
>> Is there an easy way to specify the type of flash from the controller? 
>> I'm thinking I could do something like:
>>
>> response.flash_style = 'alert-success'
>>
>>
>> and then:
>>
>>      {{if response.flash:}}
>>        <div class="alert{{=response.flash_style or ' alert-info'}}">
>>        <button type="button" class="close" data-dismiss="alert">&times;</
>> button>
>>        {{=response.flash}}
>>        </div>
>>      {{pass}}  
>>
>>
>>
>>

-- 
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/groups/opt_out.

Reply via email to