Page Source

from utils.display import ssdisplay

class MyStaticStringDisplay(ssdisplay.StaticStringDisplay):
  key = "research_index"
  tab = "research"
  title="Department Research"

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

def new(req):
  return MyStaticStringDisplay(req)