comparison README @ 31:31d196cf3b34

add settings ASSO_MEMBERS_*, ASSO_FINANCE_* and LIBERVIA_DEMO_URL
author souliane <souliane@mailoo.org>
date Tue, 27 Jan 2015 07:52:33 +0100
parents b45621706d83
children d2c45f4ba57e
comparison
equal deleted inserted replaced
30:565d653a15d3 31:31d196cf3b34
33 33
34 ** SETTINGS ** 34 ** SETTINGS **
35 35
36 The following values can be set in site's settings.py: 36 The following values can be set in site's settings.py:
37 37
38 SAT_LINK_PATH = '/path/to/sat_link.tar.bz2' #the link should point to a SàT archive in the form sat-version.tar.bz2 38 # this link should point to a SàT archive in the form sat-version.tar.bz2
39 SAT_DL_PREFIX = 'ftp://ftp.goffi.org/sat' #this prefix will be joined to the filename pointed by the previous link 39 SAT_LINK_PATH = '/path/to/sat_link.tar.bz2'
40 SAT_DL_PATH = 'ftp://ftp.goffi.org/sat/sat.tar.bz2' #if set, this link will be used instead of the joined dl_prefix + filename 40
41 # this prefix will be joined to the filename pointed by the previous link
42 SAT_DL_PREFIX = 'ftp://ftp.goffi.org/sat'
43
44 # if set, this link will be used instead of the joined dl_prefix + filename
45 SAT_DL_PATH = 'ftp://ftp.goffi.org/sat/sat.tar.bz2'
46
47 # URL to Libervia online demo
48 LIBERVIA_DEMO_URL = 'https://www.libervia.org'
49
50 # Actual number of members
51 ASSO_MEMBERS_ACTUAL = 3400
52
53 # Target number of members
54 ASSO_MEMBERS_TARGET = 6000
55
56 # Available amount to finance the association (in euros)
57 ASSO_FINANCE_ACTUAL = 40000
58
59 # Target amount to finance the association (in euros)
60 ASSO_FINANCE_TARGET = 60000
61
62 # Subscription amounts defined in the Rules of Procedure
63 ASSO_SUBSCR_AMOUNTS = (0, 10, 20, 30, 50, 80, 100)
64
41 65
42 Note that the Django application "markdown_deux" ( https://github.com/trentm/django-markdown-deux ) is required. 66 Note that the Django application "markdown_deux" ( https://github.com/trentm/django-markdown-deux ) is required.
43 For more information, check the local_settings.py file which is distributed in the sat_website directory. 67 For more information, check the local_settings.py file which is distributed in the sat_website directory.
44 68
45 ** RUNNING THE WEBSITE LOCALLY ** 69 ** RUNNING THE WEBSITE LOCALLY **