Disabling auth in application breaks appadmin. layout.html assumes, that auth is defined: --- layout.html { --- <body> <div class="flash">{{=response.flash or ''}}</div> <div class="ez-mr wrapper" id="layout"> {{#------ Layout 3 from http://www.ez-css.org/layouts ------}} <div class="ez-wr"> <div class="ez-box" id="header"> {{=auth.navbar(action=URL(request.application,'default','user'))}} <-- line to blame! <h1> <a href="">{{=response.title or 'response.title'}}</a> </h1> <h2> {{=response.subtitle or 'response.subtitle'}} </h2> </div> --- } layout.html ---
Cheers! -- Sebastian