You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.5 KiB

12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
  1. {% load i18n %}{% load staticfiles %}<!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <link rel="shortcut icon" href="{% static "img/favicon.ico" %}">
  7. <title>{% block title %}PyDash - Authentication{% endblock %}</title>
  8. <link href="{% static "css/bootstrap.min.css" %}" rel="stylesheet">
  9. <link href="{% static "css/dashboard.css" %}" rel="stylesheet">
  10. <link href="{% static "css/signin.css" %}" rel="stylesheet">
  11. <link href="{% static "css/style.css" %}" rel="stylesheet">
  12. <link href="{% static "css/fonts.css" %}" rel="stylesheet">
  13. <link href="{% static "css/font-awesome.css" %}" rel="stylesheet">
  14. <link href="{% static "css/bootstrap-responsive.min.css" %}" rel="stylesheet">
  15. </head>
  16. <body>
  17. <!-- Static navbar -->
  18. <div class="navbar navbar-fixed-top">
  19. <div class="navbar-inner">
  20. <div class="container">
  21. <a class="brand" href="/">pyDash</a>
  22. <ul class="btn btn-mini">
  23. {% if request.user.is_authenticated %}
  24. <a href="{% url 'logout' %}">{% trans "Sign out" %}</a>
  25. {% else %}
  26. <a href="{% url 'login' %}">{% trans "Sign in" %}</a>
  27. {% endif %}
  28. </ul>
  29. </div>
  30. </div>
  31. </div>
  32. <div class="container">
  33. {% block content %}{% endblock %}
  34. </div>
  35. <script src="{% static "js/jquery.js" %}"></script>
  36. <script src="{% static "js/bootstrap.min.js" %}"></script>
  37. </body>
  38. </html>