Skip to content

Commit

Permalink
update settings w/ images
Browse files Browse the repository at this point in the history
  • Loading branch information
cathydeng committed Dec 22, 2015
1 parent 911d746 commit 3ea3c1b
Showing 1 changed file with 32 additions and 11 deletions.
43 changes: 32 additions & 11 deletions councilmatic/settings_jurisdiction.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@
# The rest are optional #
#########################

LEGISTAR_URL = 'http://legistar.council.nyc.gov/Legislation.aspx'

# this is for populating meta tags
SITE_META = {
'site_name' : 'NYC Councilmatic',
'site_desc' : 'New York City Council, demystified. Keep tabs on what your local representatives are up to.',
Expand All @@ -30,6 +29,9 @@
'twitter_creator': '@DataMadeCo',
}


LEGISTAR_URL = 'http://legistar.council.nyc.gov/Legislation.aspx'

FOOTER_CREDITS = [
{
'name': 'The Participatory Politics Foundation',
Expand All @@ -48,8 +50,36 @@
},
]

# this is the default text in search bars
SEARCH_PLACEHOLDER_TEXT = "Taxi, Resolution 815-2015, etc."



# these should live in APP_NAME/static/
IMAGES = {
'favicon': 'images/favicon.png',
'logo': 'images/logo.png',
}



# this is the name of the meetings where the entire city council meets
# as stored in legistar
CITY_COUNCIL_MEETING_NAME = 'City Council Stated Meeting'

# this is the name of the role of committee chairs, e.g. 'CHAIRPERSON' or 'Chair'
# as stored in legistar
# if this is set, committees will display chairs
COMMITTEE_CHAIR_TITLE = 'CHAIRPERSON'

# this is the anme of the role of committee members,
# as stored in legistar
COMMITTEE_MEMBER_TITLE = 'Committee Member'



# this is for convenience, & used to populate a table
# describing legislation types on the about page template
LEGISLATION_TYPE_DESCRIPTIONS = [
{
'name': 'Introduction',
Expand Down Expand Up @@ -116,15 +146,6 @@
},
]

# this is the name of the meetings where the entire city council meets
CITY_COUNCIL_MEETING_NAME = 'City Council Stated Meeting'

# this is the name of the role of committee chairs, e.g. 'CHAIRPERSON' or 'Chair'
# if this is set, committees will display chairs
COMMITTEE_CHAIR_TITLE = 'CHAIRPERSON'

COMMITTEE_MEMBER_TITLE = 'Committee Member'

# these keys should match committee slugs
COMMITTEE_DESCRIPTIONS = {
"committee-on-aging" : "Department for the Aging and all federal, state and municipal programs pertinent to senior citizens",
Expand Down

0 comments on commit 3ea3c1b

Please sign in to comment.