merged karen changes

This commit is contained in:
Sanj 2011-08-10 17:07:23 +05:30
parent e22c482d52
commit 3857449076
3 changed files with 4 additions and 3 deletions

View File

@ -26,4 +26,4 @@ def format_title(value):
else: else:
return words[0].upper() return words[0].upper()
register.filter("format_title") register.filter("format_title", format_title)

View File

@ -1,4 +1,5 @@
{% extends 'noel/base.html' %} {% extends 'noel/base.html' %}
{% load itftags %}
{% block title %}India Theatre Forum: Home {% endblock %} {% block title %}India Theatre Forum: Home {% endblock %}
@ -68,7 +69,7 @@
<ul id="sliderTabs"> <ul id="sliderTabs">
{% for b in boxes %} {% for b in boxes %}
<li class="tab" style="background-image:url('{{b.image.url}}');background-position:0px {{b.imageTop}}px;"> <li class="tab" style="background-image:url('{{b.image.url}}');background-position:0px {{b.imageTop}}px;">
<h4 class="tabHeader">{{ b.title }}</h4> <h4 class="tabHeader">{% autoescape off %} {{ b.title|format_title }} {% endautoescape %}</h4>
<div class="textTab"> <div class="textTab">
<p><span class="boldText">{{ b.boldText }}</span> {{ b.normalText }}</p> <p><span class="boldText">{{ b.boldText }}</span> {{ b.normalText }}</p>
</div> </div>

View File

@ -13,7 +13,7 @@
</tr> </tr>
</table> </table>
<a href="" class="registerLink">Forgot your Password? </a> <a href="" class="registerLink">Forgot your Password? </a>
<a href="" class="registerLink">New Here? Register Now!</a> <a href="/accounts/register" class="registerLink">New Here? Register Now!</a>
</form> </form>