Try It - SUITlons
12/21/2010: SUIT 2.0.2 and Rulebox 1.1.1 released.
Our Try It Editor can be used to play around with some Rulesets live on this site. Learn more about it on its Docs article.
<h1>Brandon's Site</h1>
<p>Welcome, Brandon!</p>
<fieldset>
<legend>Who's Online?</legend>
<p>
<strong>
Brandon
</strong>
,
<del>
Chris
</del>
</p>
</fieldset>
<hr />
<p>Copyright © 20XX Brandon Evans.</p>
from pylons import tmpl_context as c
c.username = 'Brandon'
c.loggedin = True
c.members = [
{
'name': 'Brandon',
'admin': True,
'banned': False
},
{
'name': 'Chris',
'admin': False,
'banned': True
}
]
<h1>Brandon's Site</h1>
<hr />
<p>Copyright © 20XX Brandon Evans.</p>





