Wrench is now a cog. Pretty.

This commit is contained in:
Samuel Clay 2010-07-06 13:56:32 -04:00
parent 08ef889e09
commit b95e5d2977
5 changed files with 20 additions and 15 deletions

View file

@ -514,7 +514,7 @@ background: transparent;
}
#story_titles .NB-feedbar .NB-feedbar-manage-feed {
background: transparent url("../img/icons/silk/wrench.png") no-repeat center center;
background: transparent url("../img/icons/silk/cog.png") no-repeat center center;
float: left;
width: 16px;
height: 16px;
@ -1084,7 +1084,7 @@ background: transparent;
background: transparent url('../img/icons/silk/add.png') no-repeat center 8px;
}
.NB-taskbar .task_button.NB-task-manage {
background: transparent url('../img/icons/silk/wrench.png') no-repeat center 8px;
background: transparent url('../img/icons/silk/cog.png') no-repeat center 8px;
}
.NB-taskbar .task_button.task_profile {
background: transparent url('../img/icons/silk/user.png') no-repeat center 8px;

View file

@ -191,6 +191,7 @@ INSTALLED_APPS = (
'devserver',
'south',
'test_utils',
'utils',
# 'debug_toolbar'
)

View file

@ -1,4 +1,4 @@
{% load compressed %}
{% load compressed utils_tags %}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
@ -40,20 +40,19 @@
</head>
<body>
{{ session }}
{% block header %}{% endblock %}
{% block content %}{% endblock %}
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-8371683-2");
pageTracker._trackPageview();
} catch(err) {}</script>
{% if not debug %}
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-8371683-2");
pageTracker._trackPageview();
} catch(err) {}</script>
{% endif %}
</body>
</html>

View file

View file

@ -0,0 +1,5 @@
from django.conf import settings
from django import template
register = template.Library()