Page Source

from utils.display import ssdisplay

class MyStaticStringDisplay(ssdisplay.StaticStringDisplay):
  key = "ext_links"
  tab = "info"
  title="External Links"

  def permit_mode(self,mode):
     return 1 # Allow everybody to see the contents of this page

def new(req):
  return MyStaticStringDisplay(req)