comparison sat_website/local_settings.py @ 39:d2c45f4ba57e

add downloads.html
author souliane <souliane@mailoo.org>
date Tue, 27 Jan 2015 18:23:39 +0100
parents 31d196cf3b34
children dfe7139dae0a
comparison
equal deleted inserted replaced
38:e501f5ff7191 39:d2c45f4ba57e
95 os.path.join(BASE_DIR, 'templates'), 95 os.path.join(BASE_DIR, 'templates'),
96 ) 96 )
97 97
98 # Options for SàT website (see README) 98 # Options for SàT website (see README)
99 99
100 SAT_LINK_PATH = '/srv/ftp/sat/sat.tar.bz2' 100 # External URL pointing the projects archives directory
101 SAT_DL_PREFIX = 'ftp://ftp.goffi.org/sat' 101 PROJECTS_EXTERNAL_PATH = 'ftp://ftp.goffi.org'
102 #SAT_DL_PATH = 'ftp://ftp.goffi.org/sat/sat.tar.bz2' 102
103 # Internal path to the the projects archives directory
104 PROJECTS_INTERNAL_PATH = '/var/www/projects'
105
106 # List of couples with the project directory name and the project name (set to None if it's the same)
107 PROJECTS_NAMES = [('sat', None), ('sat_media', None), ('urwid-satext', 'urwid_satext'), ('sat_pubsub', None), ('libervia', None)]
108
109 # Extension used to name the project archives
110 ARCHIVE_SUFFIX = '.tar.bz2'
111
112 # URL to Libervia online demo
103 LIBERVIA_DEMO_URL = 'https://www.libervia.org' 113 LIBERVIA_DEMO_URL = 'https://www.libervia.org'
104 114
115 # Actual and target number of members
105 ASSO_MEMBERS_ACTUAL = 3400 116 ASSO_MEMBERS_ACTUAL = 3400
106 ASSO_MEMBERS_TARGET = 6000 117 ASSO_MEMBERS_TARGET = 6000
107 ASSO_FINANCE_ACTUAL = 34000 118
119 # Actual and target amount to finance the association (in euros)
120 ASSO_FINANCE_ACTUAL = 40000
108 ASSO_FINANCE_TARGET = 60000 121 ASSO_FINANCE_TARGET = 60000
122
123 # Subscription amounts as defined in the Rules of Procedure
109 ASSO_SUBSCR_AMOUNTS = (0, 10, 20, 30, 50, 80, 100) 124 ASSO_SUBSCR_AMOUNTS = (0, 10, 20, 30, 50, 80, 100)