X-Git-Url: http://git.onelab.eu/?p=sfa-gui.git;a=blobdiff_plain;f=HelpPanel.py;fp=HelpPanel.py;h=59e183ab62f18c61785553f5514bb566e6d22640;hp=e99ee0b06d4d511fe4f21fcec8748d8e4c5eb2c7;hb=e15ce3036c57ffce83734d8f9912acff5ce2e82a;hpb=67320fd9f6aa1553a9223d0b99a6c4e2bcde4d3d 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)) +