Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
itminedu
synnefo
Commits
db78f0cb
Commit
db78f0cb
authored
Feb 02, 2012
by
Kostas Papadimitriou
Browse files
Fixed admin base template to use old bootstrap styles
parent
13858d75
Changes
4
Hide whitespace changes
Inline
Side-by-side
astakos/im/admin/templates/admin_base.html
View file @
db78f0cb
{% extends "base.html" %}
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"utf-8"
/>
<title>
{{ title|default:"Astakos Login" }}
</title>
<link
rel=
"stylesheet"
href=
"{{ IM_MEDIA_URL }}css/bootstrap.css"
>
<script
src=
"{{ IM_MEDIA_URL }}js/jquery.js"
></script>
<script
src=
"{{ IM_MEDIA_URL }}js/jquery.tablesorter.js"
></script>
<script
src=
"{{ IM_MEDIA_URL }}js/main.js"
></script>
{% block head %}{% endblock %}
</head>
<body>
<div
class=
"container"
>
<div
style=
"padding: 5px 0px 0px 0px"
>
<img
src=
"{{ IM_MEDIA_URL }}images/banner.png"
width=
"900"
height=
"200"
>
</div>
{% block title %}{% endblock %}
{% if messages %}
<ul
class=
"messages"
>
{% for message in messages %}
<li
{%
if
message.tags
%}
class=
"alert-message.{{ message.tags }}"
{%
endif
%}
>
{{ message }}
</li>
{% endfor %}
</ul>
{% endif %}
{% block tabs %}
<ul
class=
"tabs"
>
<li
{%
ifequal
tab
"
admin
"
%}
class=
"active"
{%
endifequal
%}
>
...
...
@@ -20,4 +44,8 @@
</ul>
{% endblock %}
{% block body %}{% endblock %}
{% block body %}{% endblock %}
</div>
</body>
</html>
astakos/im/static/im/bootstrap.css
→
astakos/im/static/im/
grnetstyles/css/
bootstrap.css
View file @
db78f0cb
File moved
astakos/im/static/im/jquery.tablesorter.js
→
astakos/im/static/im/
grnetstyles/js/
jquery.tablesorter.js
View file @
db78f0cb
File moved
astakos/im/static/im/main.js
→
astakos/im/static/im/
grnetstyles/js/
main.js
View file @
db78f0cb
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment