Page Source

from utils.display import ssdisplay

class MyStaticStringDisplay(ssdisplay.StaticStringDisplay):
  key = "prog_study"
  tab = "info"
  title="Programs of Study"

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

def new(req):
  return MyStaticStringDisplay(req)