summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2009-11-23 21:16:55 -0500
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2009-11-23 21:16:55 -0500
commitfa98d95d8c675f37c321c40e0151624dca240efc (patch)
treee4be42f89de6829588735822408a986eacbfd578 /templates
parent007d4522c2999188d77bde9ba5059231ccc53f73 (diff)
downloadaskbot-fa98d95d8c675f37c321c40e0151624dca240efc.tar.gz
askbot-fa98d95d8c675f37c321c40e0151624dca240efc.tar.bz2
askbot-fa98d95d8c675f37c321c40e0151624dca240efc.zip
improved email subscription job, some small fixes, users now can change their screen name any time
Diffstat (limited to 'templates')
-rw-r--r--templates/content/js/com.cnprog.i18n.js2
-rw-r--r--templates/question_edit.html2
-rw-r--r--templates/user_edit.html4
-rw-r--r--templates/user_votes.html4
4 files changed, 8 insertions, 4 deletions
diff --git a/templates/content/js/com.cnprog.i18n.js b/templates/content/js/com.cnprog.i18n.js
index d2356abc..96e107c8 100644
--- a/templates/content/js/com.cnprog.i18n.js
+++ b/templates/content/js/com.cnprog.i18n.js
@@ -57,7 +57,7 @@ var i18nZh = {
};
var i18nEn = {
- '/':'/',
+ '/':'/forum/',
'need >15 points to report spam':'need >15 points to report spam ',
'>15 points requried to upvote':'>15 points required to upvote ',
'tags cannot be empty':'please enter at least one tag',
diff --git a/templates/question_edit.html b/templates/question_edit.html
index d6728caf..8ce980fe 100644
--- a/templates/question_edit.html
+++ b/templates/question_edit.html
@@ -22,7 +22,7 @@
//toggle preview of editor
var display = true;
- var txt = "[{% trans "hide preview"}%]";
+ var txt = "[{% trans "hide preview" %}]";
$('#pre-collapse').text(txt);
$('#pre-collapse').bind('click', function(){
txt = display ? "[{% trans "show preview" %}]" : "[{% trans "hide preview" %}]";
diff --git a/templates/user_edit.html b/templates/user_edit.html
index 051d6537..5886c071 100644
--- a/templates/user_edit.html
+++ b/templates/user_edit.html
@@ -39,6 +39,10 @@
<th width="100px"></th>
<th></th>
</tr>
+ <tr style="height:35px">
+ <td>{{ form.username.label_tag }}:</td>
+ <td>{{ form.username }} <span class="form-error"></span> {{ form.username.errors }} </td>
+ </tr>
<tr style="height:35px">
<td>{{ form.email.label_tag }}:</td>
diff --git a/templates/user_votes.html b/templates/user_votes.html
index b72b3ef6..94d7fcbd 100644
--- a/templates/user_votes.html
+++ b/templates/user_votes.html
@@ -19,9 +19,9 @@
</div>
<div style="float:left;overflow:hidden;width:750px">
{% ifequal vote.answer_id 0 %}
- <span class="question-title-link"><a href="{% url question vote.question_id %}/{{ vote.title|slugify }}">{{ vote.title }}</a></span>
+ <span class="question-title-link"><a href="{% url question vote.question_id %}{{ vote.title|slugify }}">{{ vote.title }}</a></span>
{% else %}
- <span class="answer-title-link" ><a href="{% url question vote.question_id %}/{{ vote.title|slugify }}#{{ vote.answer_id }}">{{ vote.title }}</a></span>
+ <span class="answer-title-link" ><a href="{% url question vote.question_id %}{{ vote.title|slugify }}#{{ vote.answer_id }}">{{ vote.title }}</a></span>
{% endifequal %}
<div style="height:5px"></div>
</div>