~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/console/__init__.py

Add tabs to the new framework. Move the app icons into the apps themselves.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
        ('console/service', ConsoleServiceRESTView),
28
28
        ('console', ConsoleView),
29
29
    ]
 
30
    tabs = [
 
31
        ('console', 'Console', 'A Python console where you can try out code '
 
32
         'without having to save and run it.', 'console.png', 'console', 3)
 
33
    ]
30
34
    overlays = [
31
35
        ConsoleOverlay,
32
36
    ]