changed titles to India Theatre Forum from ITF, and added link to erang
This commit is contained in:
parent
6c4ccfc99a
commit
98f0013d8b
|
@ -1,7 +1,7 @@
|
|||
from django.contrib import admin
|
||||
from django.contrib.auth.models import User
|
||||
from models import *
|
||||
|
||||
'''
|
||||
#class NicknameInline(admin.StackedInline):
|
||||
# model = Nickname
|
||||
# extra = 3
|
||||
|
@ -14,7 +14,7 @@ from models import *
|
|||
# extra = 3
|
||||
|
||||
class ProfileInline(admin.StackedInline):
|
||||
model = Profile
|
||||
model = Person
|
||||
extra = 1
|
||||
|
||||
class PerformanceAdmin(admin.ModelAdmin):
|
||||
|
@ -64,4 +64,4 @@ admin.site.register(Nickname)
|
|||
admin.site.register(TheatreGroup, TheatreGroupAdmin)
|
||||
admin.site.register(Venue, VenueAdmin)
|
||||
admin.site.register(Profile, ProfileAdmin)
|
||||
|
||||
'''
|
||||
|
|
|
@ -7,6 +7,7 @@ from oxdjango.fields import DictField
|
|||
GENDER_CHOICES = (
|
||||
('M', 'Male'),
|
||||
('F', 'Female'),
|
||||
('O', 'Other'),
|
||||
)
|
||||
|
||||
class Person(models.Model):
|
||||
|
@ -55,7 +56,7 @@ class PhotoAlbum(models.Model):
|
|||
class Photo(models.Model):
|
||||
image = models.ImageField(upload_to='photos/') # PLEASE CHANGE UPLOAD_TO TO A FUNCTION THAT RETURNS A SANE FOLDER NAME AND CREATES IT.
|
||||
caption = models.TextField(blank=True)
|
||||
exif = DictField(blank=True)
|
||||
exif = models.TextField(blank=True)
|
||||
album = models.ForeignKey("PhotoAlbum")
|
||||
|
||||
class Occupation(models.Model):
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{% extends 'festival_wireframe.html' %}
|
||||
{% block title %}
|
||||
ITF - eRang
|
||||
India Theatre Forum - eRang
|
||||
{% endblock %}
|
||||
{% block leftCol %}
|
||||
<ul id="leftNav">
|
||||
|
@ -25,6 +25,8 @@
|
|||
<p>There are a large number of people who are deeply interested in Indian theatre, but who are starved of regular news and discussion about it. Bringing out a hard copy journal is a costly affair, and is not easy to sustain. Therefore, as part of the Forum website, it was felt that it would be useful to bring out an internet-based fortnightly journal. The coordinator of this project, Sudhanva Deshpande, has some experience of bringing out a journal of this kind, since he co-edited e-STQ. It was decided that he would put together a team that would bring out the new e-journal, tentatively christened e-Rang.</p>
|
||||
|
||||
<p>e-Rang will be sent out free to readers.</p>
|
||||
|
||||
<p><b>Update:</b> e-Rang sent out it's first issue on July 15th, 2010. You can subscribe and view current and past issues at <a href="http://theatreforum.in/erang/">http://theatreforum.in/erang/</a></p>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{% extends 'festival_wireframe.html' %}
|
||||
|
||||
{% block title %}
|
||||
ITF - Home
|
||||
India Theatre Forum - Home
|
||||
{% endblock %}
|
||||
|
||||
{% block leftCol %}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{% extends 'festival_wireframe.html' %}
|
||||
{% block title %}
|
||||
ITF - {{data.meeting.title}}
|
||||
India Theatre Forum - {{data.meeting.title}}
|
||||
{% endblock %}
|
||||
|
||||
{% block extra_head %}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{% extends 'festival_wireframe.html' %}
|
||||
|
||||
{% block title %}
|
||||
ITF - Activities
|
||||
India Theatre Forum - Activities
|
||||
{% endblock %}
|
||||
|
||||
{% block extra_head %}
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
|
||||
{% block title %}
|
||||
ITF - People
|
||||
India Theatre Forum - People
|
||||
{% endblock %}
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{% extends 'festival_wireframe.html' %}
|
||||
{% block title %}
|
||||
ITF - {{ project.title }}
|
||||
India Theatre Forum - {{ project.title }}
|
||||
{% endblock %}
|
||||
|
||||
{% block centerCol %}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{% extends 'festival_wireframe.html' %}
|
||||
|
||||
{% block title %}
|
||||
ITF - Projects
|
||||
India Theatre Forum - Projects
|
||||
{% endblock %}
|
||||
|
||||
{% block leftCol %}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{% extends 'festival_wireframe.html' %}
|
||||
|
||||
{% block title %}
|
||||
ITF - Publications
|
||||
India Theatre Forum - Publications
|
||||
{% endblock %}
|
||||
|
||||
{% block extra_head %}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{% extends 'festival_wireframe.html' %}
|
||||
{% block title %}
|
||||
ITF - Resources
|
||||
India Theatre Forum - Resources
|
||||
{% endblock %}
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{% extends 'festival_wireframe.html' %}
|
||||
{% block title %}
|
||||
ITF - Surveys
|
||||
India Theatre Forum - Surveys
|
||||
{% endblock %}
|
||||
{% block leftCol %}
|
||||
<ul id="leftNav">
|
||||
|
|
Loading…
Reference in New Issue
Block a user