|
8 | 8 | <meta http-equiv="X-XRDS-Location" content="http://{{ request.get_host }}{% url oid_xrdf %}" />
|
9 | 9 | {% endif %}
|
10 | 10 | <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}/css/base.css" />
|
| 11 | + <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}/css/custom-theme/jquery-ui-1.8.2.custom.css" /> |
| 12 | + <script type="text/javascript" src="{{ MEDIA_URL }}/js/jquery-1.4.2.min.js"> |
| 13 | + </script> |
| 14 | + <script type="text/javascript" src="{{ MEDIA_URL }}/js/jquery-ui-1.8.2.custom.min.js"> |
| 15 | + </script> |
| 16 | + <script type="text/javascript" src="{{ MEDIA_URL }}/js/main.js"> |
| 17 | + </script> |
| 18 | + <style type="text/css"> |
| 19 | + body{ font: 62.5% "Trebuchet MS", sans-serif; margin: 50px; |
| 20 | + background-color:#100; color:#fff;} |
| 21 | + a { color: #5ff; } |
| 22 | + a:hover { color: #0f0; } |
| 23 | + a:visited { color: #099; } |
| 24 | + .demoHeaders { margin-top: 2em; } |
| 25 | + #dialog_link {padding: .4em 1em .4em 20px;text-decoration: none;position: relative;} |
| 26 | + #dialog_link span.ui-icon {margin: 0 5px 0 0;position: absolute;left: .2em;top: 50%;margin-top: -8px;} |
| 27 | + ul#icons {margin: 0; padding: 0;} |
| 28 | + ul#icons li {margin: 2px; position: relative; padding: 4px 0; cursor: pointer; float: left; list-style: none;} |
| 29 | + ul#icons span.ui-icon {float: left; margin: 0 4px;} |
| 30 | + </style> |
11 | 31 | {% block head %}
|
12 | 32 | {% endblock %}
|
13 | 33 | </head>
|
14 | 34 | <body>
|
15 | 35 | <div class="user_info">
|
16 | 36 | {% if request.user.is_authenticated %}
|
17 |
| - Hello {{ request.user }}, <a href="{% url user_signout %}">Sign out</a> |
| 37 | + Hello {{ request.user }}, <a href="{% url user_signout %}?next=/">Sign out</a> |
18 | 38 | {% else %}
|
19 | 39 | <a href="{% url user_signin %}?next={{request.get_full_path}}">Log In</a> | <a href="{% url registration_register %}?next={{request.get_full_path}}">Register</a>
|
20 | 40 | {% endif %}
|
|
23 | 43 | {% block content %}
|
24 | 44 | This website is under construction
|
25 | 45 | {% endblock %}
|
26 |
| - </div> |
27 | 46 | </body>
|
28 | 47 | </html>
|
29 | 48 |
|
0 commit comments