SECRET_KEY = 'a8l7%06wr2k+3=%#*#@#rvop2mmzko)44%7k(zx%lls^ihm9^5'
# List of callables that know how to import templates from various sources.
-TEMPLATE_LOADERS = (
- ('django.template.loaders.cached.Loader', (
- 'django.template.loaders.filesystem.Loader',
- 'django.template.loaders.app_directories.Loader',
- )),
-)
+#TEMPLATE_LOADERS = (
+# ('django.template.loaders.cached.Loader', (
+# 'django.template.loaders.filesystem.Loader',
+# 'django.template.loaders.app_directories.Loader',
+# )),
+#)
MIDDLEWARE_CLASSES = (
border: 1px solid #000;
background-image: url(../images/grid_bg_2.png);
padding: 0.3em 0.4em 0.4em 0.4em;
- margin: 2.5em 1em 1em 0em;
+ margin: 2em 1em 0em 0em;
-moz-border-radius: 8px 0px 8px 8px;
-webkit-border-radius: 8px 0px 8px 8px;
border-radius: 8px 0px 8px 8px;
padding:0.8em 0.8em 0.8em 0.8em;
}
+#action_violet {
+ background-color: #a00020;
+ color: #FFF;
+ padding:0.8em 0.8em 0.8em 0.8em;
+ }
#action_red {
- background-color: #d24836;
+ background-color: #db1020;
color: #FFF;
padding:0.8em 0.8em 0.8em 0.8em;
}
{% block chat %}
{% if room %}
-<div id="module-set" style="width: 270px">
+<div id="module-set" style="width: 290px">
<div class="module">
-<h3><img src="{% url telemeta-images "search_wh2.png" %}" alt="rss" style="vertical-align:middle" />{% trans "Questions" %}</h3>
+<h3><img src="{% url telemeta-images "search_wh2.png" %}" alt="rss" style="vertical-align:middle" />{% trans "Chatter" %}</h3>
<div style="background: white;">
<div id="chatwindow"><span id="loading">Loading...</span></div>
<form id="chatform">{% csrf_token %}
<label for="msg"></label>
<input type="text" id="msg" />
-<input type="submit" value="Ask" />
+<input type="submit" value="{% trans "Send" %}" />
</form>
<!--<script type="text/javascript">document.getElementById("msg").focus();</script>-->
</div>
</div>
</div>
<div class="module_action">
-<a href="#" class="component_icon button" id="action_blue">{% trans "New note" %}</a>
+<a href="#" class="component_icon button" id="action_violet">{% trans "New note" %}</a>
</div>
{% endblock notes %}
{% if user.is_authenticated and user.username == usr.username or user.is_staff %}
<div class="module_action">
- <a href="{% url telemeta-profile-edit usr.username %}" class="component_icon button" id="action_blue">{% trans "Edit" %}</a>
+ <a href="{% url telemeta-profile-edit usr.username %}" class="component_icon button" id="action_blue">{% trans "Modify" %}</a>
</div>
{% endif %}
{% endwith %}
{% endblock %}
- <div class="module_action">
- <a href="#" class="component_icon button" id="action_yellow"
- onclick="document.getElementById('searchform').submit(); return false;">{% trans 'Search' %}</a>
- </div>
</div>
<div class="desk_course">
</fieldset>
</form>
+
</div>
</div>
+
+<div class="module_action">
+ <a href="#" class="component_icon button" id="action_yellow"
+ onclick="document.getElementById('searchform').submit(); return false;">{% trans 'Search' %}</a>
+</div>
+
+
{% endblock %}