X-Git-Url: http://git.onelab.eu/?p=sfa-gui.git;a=blobdiff_plain;f=HelpPanel.py;h=59e183ab62f18c61785553f5514bb566e6d22640;hp=e99ee0b06d4d511fe4f21fcec8748d8e4c5eb2c7;hb=refs%2Fheads%2Fmarcoy-dev;hpb=3eb4a90294f4a605cb9a18666f1e6e656e9b86a8 diff --git a/HelpPanel.py b/HelpPanel.py index e99ee0b..59e183a 100644 --- a/HelpPanel.py +++ b/HelpPanel.py @@ -43,4 +43,17 @@ class VINIHelpPanel(HelpPanel): m += "them.

" self.add(HTML(m)) +class OCHelpPanel(HelpPanel): + def __init__(self): + HelpPanel.__init__(self) + m = "
Steps to set up your slice:" + m += "
  1. Use the Request tab to request that some " + m += "VM instances be allocated to your slice." + m += "
  2. Use the Instances tab to get information on " + m += "running VM instances." + m += "
  3. Under the Submit tab, click the Apply button " + m += "to submit your changes, or the Reset button to discard " + m += "them.

" + self.add(HTML(m)) +