123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <html>
- <head>
- <meta charset="utf-8">
- <link rel="stylesheet" href="{{ url_for('static', filename='estilo.css') }}" />
- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
- <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
- <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
- <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
- <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.9/angular.min.js"></script>
- <script src="{{ url_for('static', filename='dashboard.js') }}"></script>
-
- </head>
- <body ng-app="dashboard" ng-controller="AdminListController">
- {% raw %}
- <div class="container-fluid">
- <div class="header">
- <div class="row">
- <div class="col-1">
- <div class="boton logo">
- Logo
- </div>
- </div>
- <div class="col-2">
- </div>
- <div class="col-6">
- <p>Dashboard {{titulo}}</p>
- </div>
- <div class="col-2" style="visibility:visible">
- <a href="" class="boton usuario">Carlos J Corrada Bravo</a>
- </div>
- <div class="col-1">
- <a href="https://cdcc.uprrp.edu" class="boton logout">logout</a>
- </div>
- </div>
- </div>
- <div class="fila">
- <a ng-repeat="task in tasks" href="{{task.url}}" class="boton task">{{task.titulo}}</a>
- </div>
- </div>
- {% endraw %}
- </body>
- </html>
|