merged
This commit is contained in:
commit
575984fbd7
|
@ -6,14 +6,14 @@ from ox.django.decorators import login_required_json
|
||||||
from ox.django.shortcuts import render_to_json_response, get_object_or_404_json, json_response
|
from ox.django.shortcuts import render_to_json_response, get_object_or_404_json, json_response
|
||||||
from models import Panel
|
from models import Panel
|
||||||
import json
|
import json
|
||||||
|
from django.template import RequestContext
|
||||||
|
|
||||||
def mainPage(request):
|
def mainPage(request):
|
||||||
d = {'title': 'India Theatre Forum'}
|
d = {'title': 'India Theatre Forum'}
|
||||||
return render_to_response("noel/index.html", d)
|
return render_to_response("noel/index.html", d)
|
||||||
|
|
||||||
def innerPage(request):
|
def innerPage(request):
|
||||||
return render_to_response("noel/bestpractices.html")
|
return render_to_response("noel/bestpractices.html", RequestContext(request, {}))
|
||||||
|
|
||||||
def getPage(request):
|
def getPage(request):
|
||||||
'''
|
'''
|
||||||
|
|
|
@ -21,7 +21,7 @@ def format_title(value):
|
||||||
words = v.split(splitter)
|
words = v.split(splitter)
|
||||||
l = len(words)
|
l = len(words)
|
||||||
if l > 1:
|
if l > 1:
|
||||||
boldWord = "<b>" + words[l - 1] + "</b>"
|
boldWord = "<span>" + words[l - 1] + "</span>"
|
||||||
return (splitter.join(words[:l-1]) + splitter + boldWord).upper()
|
return (splitter.join(words[:l-1]) + splitter + boldWord).upper()
|
||||||
else:
|
else:
|
||||||
return words[0].upper()
|
return words[0].upper()
|
||||||
|
|
|
@ -140,8 +140,10 @@ margin-right:6px;
|
||||||
font-weight:bold;}
|
font-weight:bold;}
|
||||||
|
|
||||||
#contentTab
|
#contentTab
|
||||||
{padding:6px 26px 10px 6px;
|
{padding:6px 18px 10px 6px;
|
||||||
clear:both;}
|
clear:both;
|
||||||
|
height:172px;
|
||||||
|
overflow:hidden;} /*we may need to do some JAVASCRIPT for this*/
|
||||||
|
|
||||||
#contentTab ul li span
|
#contentTab ul li span
|
||||||
{color:#0024ff;}
|
{color:#0024ff;}
|
||||||
|
@ -155,14 +157,14 @@ color:#929292;}
|
||||||
|
|
||||||
#triangleNext
|
#triangleNext
|
||||||
{position:absolute;
|
{position:absolute;
|
||||||
left:22px;
|
left:20px;
|
||||||
bottom:10px;
|
bottom:10px;
|
||||||
cursor:pointer;}
|
cursor:pointer;}
|
||||||
|
|
||||||
#trianglePrevious
|
#trianglePrevious
|
||||||
{position:absolute;
|
{position:absolute;
|
||||||
bottom:10px;
|
bottom:10px;
|
||||||
right:22px;
|
right:20px;
|
||||||
cursor:pointer;}
|
cursor:pointer;}
|
||||||
|
|
||||||
#slider
|
#slider
|
||||||
|
@ -178,16 +180,23 @@ position:relative;}
|
||||||
|
|
||||||
#arrowLeft
|
#arrowLeft
|
||||||
{position:absolute;
|
{position:absolute;
|
||||||
top:49%;
|
top:92px;
|
||||||
|
left:12px;
|
||||||
z-index:5;
|
z-index:5;
|
||||||
left:10px;}
|
padding-left:0;
|
||||||
|
padding-right:120px;
|
||||||
|
padding-bottom:60px;
|
||||||
|
padding-top:60px;}
|
||||||
|
|
||||||
#arrowRight
|
#arrowRight
|
||||||
{position:absolute;
|
{position:absolute;
|
||||||
top:49%;
|
top:92px;
|
||||||
|
right:12px;
|
||||||
z-index:5;
|
z-index:5;
|
||||||
right:10px;}
|
padding-right:0;
|
||||||
|
padding-left:120px;
|
||||||
|
padding-bottom:60px;
|
||||||
|
padding-top:60px;}
|
||||||
|
|
||||||
#sliderTabs /*at 800 res, we have different probs in different browsers with the tabs, ok to give position absolute to the ul?*/
|
#sliderTabs /*at 800 res, we have different probs in different browsers with the tabs, ok to give position absolute to the ul?*/
|
||||||
{width:4000px;
|
{width:4000px;
|
||||||
|
|
|
@ -155,7 +155,7 @@ color:#f7bd00;
|
||||||
position:absolute;
|
position:absolute;
|
||||||
right:8px;
|
right:8px;
|
||||||
top:-14px;
|
top:-14px;
|
||||||
cursor:pointer;} /*unicode not showing in IE*/
|
cursor:pointer;}
|
||||||
|
|
||||||
#triangleDown
|
#triangleDown
|
||||||
{font-size:10px;
|
{font-size:10px;
|
||||||
|
@ -207,13 +207,14 @@ float:left;}
|
||||||
.twitter-share-button
|
.twitter-share-button
|
||||||
{padding-top:35px;
|
{padding-top:35px;
|
||||||
margin-left:164px;
|
margin-left:164px;
|
||||||
|
margin-right:20px;
|
||||||
float:left;}/*WHAT'S HAPPENING IN SAFARI, doesn't show until you hover?? hard to custmoise these ones, on hover*/
|
float:left;}/*WHAT'S HAPPENING IN SAFARI, doesn't show until you hover?? hard to custmoise these ones, on hover*/
|
||||||
|
|
||||||
#fb
|
#fb
|
||||||
{width:62px;
|
{width:62px;
|
||||||
font-size:12px;
|
font-size:12px;
|
||||||
color:#fff;
|
color:#fff;
|
||||||
padding-top:36px;
|
padding-top:35px;
|
||||||
float:left;}
|
float:left;}
|
||||||
|
|
||||||
#fb a
|
#fb a
|
||||||
|
@ -226,7 +227,7 @@ border-radius:3px;
|
||||||
}/*problem customising these*/
|
}/*problem customising these*/
|
||||||
|
|
||||||
#download
|
#download
|
||||||
{padding-top:38px;
|
{padding-top:39px;
|
||||||
cursor:pointer;
|
cursor:pointer;
|
||||||
margin-left:4px;
|
margin-left:4px;
|
||||||
clear:both;}
|
clear:both;}
|
||||||
|
|
BIN
itf/static/images/noel/arrow-lft.png
Normal file
BIN
itf/static/images/noel/arrow-lft.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.0 KiB |
BIN
itf/static/images/noel/arrow-rt.png
Normal file
BIN
itf/static/images/noel/arrow-rt.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.0 KiB |
|
@ -55,8 +55,8 @@
|
||||||
<li><a href=""><span>Name of Play</span></a></li>
|
<li><a href=""><span>Name of Play</span></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<div id="triangleUp">▲</div>
|
<div id="triangleUp">▲</div>
|
||||||
<div id="triangleDown">▼</div>
|
<div id="triangleDown">▼</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -75,7 +75,7 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p id="fb">
|
<p id="fb">
|
||||||
<iframe src="http://www.facebook.com/plugins/like.php?href=www.theatreforum.in&send=false&layout=button_count&width=450&show_faces=false&action=like&colorscheme=light&font=arial&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:21px;" allowTransparency="true"></iframe>
|
<iframe src="http://www.facebook.com/plugins/like.php?href=www.theatreforum.in&send=false&layout=button_count&width=450&show_faces=false&action=like&colorscheme=light&font=arial&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:80px; height:21px;" allowTransparency="true"></iframe>
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
|
@ -65,8 +65,8 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="slider">
|
<div id="slider">
|
||||||
<img src="/static/images/noel/arrow-left.png" width="28" height="42" alt="arrow-left" id="arrowLeft">
|
<img src="/static/images/noel/arrow-lft.png" width="27" height="39" alt="arrow-left" id="arrowLeft">
|
||||||
<img src="/static/images/noel/arrow-right.png" width="28" height="42" alt="arrow-right" id="arrowRight">
|
<img src="/static/images/noel/arrow-rt.png" width="27" height="39" alt="arrow-right" id="arrowRight">
|
||||||
<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;">
|
||||||
|
|
Loading…
Reference in New Issue
Block a user