Skip to content
Snippets Groups Projects
Select Git revision
  • 27da12f30c516859d68e5747ab9ecef81093e162
  • master default protected
  • L2SS-1914-fix_job_dispatch
  • TMSS-3170
  • TMSS-3167
  • TMSS-3161
  • TMSS-3158-Front-End-Only-Allow-Changing-Again
  • TMSS-3133
  • TMSS-3319-Fix-Templates
  • test-fix-deploy
  • TMSS-3134
  • TMSS-2872
  • defer-state
  • add-custom-monitoring-points
  • TMSS-3101-Front-End-Only
  • TMSS-984-choices
  • SDC-1400-Front-End-Only
  • TMSS-3079-PII
  • TMSS-2936
  • check-for-max-244-subbands
  • TMSS-2927---Front-End-Only-PXII
  • Before-Remove-TMSS
  • LOFAR-Release-4_4_318 protected
  • LOFAR-Release-4_4_317 protected
  • LOFAR-Release-4_4_316 protected
  • LOFAR-Release-4_4_315 protected
  • LOFAR-Release-4_4_314 protected
  • LOFAR-Release-4_4_313 protected
  • LOFAR-Release-4_4_312 protected
  • LOFAR-Release-4_4_311 protected
  • LOFAR-Release-4_4_310 protected
  • LOFAR-Release-4_4_309 protected
  • LOFAR-Release-4_4_308 protected
  • LOFAR-Release-4_4_307 protected
  • LOFAR-Release-4_4_306 protected
  • LOFAR-Release-4_4_304 protected
  • LOFAR-Release-4_4_303 protected
  • LOFAR-Release-4_4_302 protected
  • LOFAR-Release-4_4_301 protected
  • LOFAR-Release-4_4_300 protected
  • LOFAR-Release-4_4_299 protected
41 results

taskprescheduler

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    index.html 1.98 KiB
    <!doctype html>
    <!-- $Id$ -->
    <html lang='en' ng-app="raeApp">
        <head>
        <meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>
        <title>{{title}}</title>
        <link rel='shortcut icon' href='{{ url_for('static', filename='favicon.ico') }}'>
        <link href="/static/css/main.css" rel="stylesheet" type="text/css">
        <link href="/static/css/bootstrap.min.css" rel="stylesheet" type="text/css">
        <link href="/static/js/angular-ui-grid/ui-grid.min.css" rel="stylesheet" type="text/css">
        <script src="/static/js/angular/angular.js"></script>
        <script src="/static/js/angular-route/angular-route.min.js"></script>
        <script src="/static/js/angular-touch/angular-touch.js"></script>
        <script src="/static/js/angular-ui-grid/ui-grid.js"></script>
        <script src="/static/js/moment/moment.js"></script>
        <script src="/static/js/angular-moment/angular-moment.js"></script>
        <link href="/static/js/angular-gantt/angular-gantt.min.css" rel="stylesheet" type="text/css">
        <link href="/static/js/angular-gantt/angular-gantt-plugins.min.css" rel="stylesheet" type="text/css">
        <script src="/static/js/angular-gantt/angular-gantt.js"></script>
        <script src="/static/js/angular-gantt/angular-gantt-plugins.js"></script>
        <script src="/static/app/app.js"></script>
        <script src="/static/app/controllers/datacontroller.js"></script>
        <script src="/static/app/controllers/gridcontroller.js"></script>
        </head>
        <body>
        {% raw %}
        <div ng-controller="GridController as gridCtrl">
            <strong>Tasks:</strong>
            <div id="grid1" ui-grid="gridOptions" ui-grid-move-columns class="myGrid"></div>
        </div>
        <br/>
        <br/>
        <br/>
        <div ng-controller="DataController as dataCtrl">
            <div gantt "{ data= dataCtrl.dataService.resources }" style="min-height:300px">
                <gantt-table></gantt-table>
                <gantt-movable></gantt-movable>
                <gantt-tooltips></gantt-tooltips>
            </div>
        </div>
        {% endraw %}
        </body>
    </html>