Nenhuma descrição

dashAdministracion.html 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <html>
  2. <head>
  3. <meta charset="utf-8">
  4. <link rel="stylesheet" href="{{ url_for('static', filename='estilo.css') }}" />
  5. <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
  6. <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
  7. <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
  8. <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
  9. <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.9/angular.min.js"></script>
  10. <script src="{{ url_for('static', filename='dashboard.js') }}"></script>
  11. </head>
  12. <body ng-app="dashboard" ng-controller="AdminListController">
  13. {% raw %}
  14. <div class="container-fluid">
  15. <div class="header">
  16. <div class="row">
  17. <div class="col-1">
  18. <div class="boton logo">
  19. Logo
  20. </div>
  21. </div>
  22. <div class="col-2">
  23. </div>
  24. <div class="col-6">
  25. <p>Dashboard {{titulo}}</p>
  26. </div>
  27. <div class="col-2" style="visibility:visible">
  28. <a href="" class="boton usuario">Carlos J Corrada Bravo</a>
  29. </div>
  30. <div class="col-1">
  31. <a href="https://cdcc.uprrp.edu" class="boton logout">logout</a>
  32. </div>
  33. </div>
  34. </div>
  35. <div class="fila">
  36. <a ng-repeat="task in tasks" href="{{task.url}}" class="boton task">{{task.titulo}}</a>
  37. </div>
  38. </div>
  39. {% endraw %}
  40. </body>
  41. </html>