2017-09-10 21:38:09 +02:00
# -*- coding: utf-8 -*-
from collections import OrderedDict
from gluon import current
from gluon . storage import Storage
def config ( settings ) :
T = current . T
# Pre-Populate
# http://eden.sahanafoundation.org/wiki/DeveloperGuidelines/PrePopulate
# Configure/disable pre-population of the database.
# To pre-populate the database On 1st run should specify directory(s) in
# /modules/templates/
# eg:
# ["default"] (1 is a shortcut for this)
# ["default", "default/users"]
# Unless doing a manual DB migration, where prepopulate = 0
# In Production, prepopulate = 0 (to save 1x DAL hit every page)
2017-09-25 23:16:17 +02:00
settings . base . prepopulate . append ( " Spotter " )
2017-09-10 21:38:09 +02:00
2019-12-20 17:53:39 +01:00
# Uncomment this to prefer scalability-optimized strategies globally
#settings.base.bigtable = True
2017-09-10 21:38:09 +02:00
# Theme (folder to use for views/layout.html)
#settings.base.theme = "default"
# Enable Guided Tours
2017-09-16 10:51:10 +02:00
#settings.base.guided_tour = True
2017-09-10 21:38:09 +02:00
# Authentication settings
# These settings should be changed _after_ the 1st (admin) user is
# registered in order to secure the deployment
# Should users be allowed to register themselves?
#settings.security.self_registration = False
# Do new users need to verify their email address?
#settings.auth.registration_requires_verification = True
# Do new users need to be approved by an administrator prior to being able to login?
#settings.auth.registration_requires_approval = True
2019-12-20 17:53:39 +01:00
# Disable welcome-emails to newly registered users
#settings.auth.registration_welcome_email = False
2017-09-10 21:38:09 +02:00
# Allow a new user to be linked to a record (and a new record will be created if it doesn't already exist)
2017-09-16 10:51:10 +02:00
settings . auth . registration_link_user_to = { " staff " : T ( " Staff " ) ,
" volunteer " : T ( " Volunteer " ) ,
" member " : T ( " Member " ) }
2017-09-10 21:38:09 +02:00
# Always notify the approver of a new (verified) user, even if the user is automatically approved
#settings.auth.always_notify_approver = False
# The name of the teams that users are added to when they opt-in to receive alerts
#settings.auth.opt_in_team_list = ["Updates"]
# Uncomment this to set the opt in default to True
#settings.auth.opt_in_default = True
# Uncomment this to request the Home Phone when a user registers
2017-09-16 10:51:10 +02:00
settings . auth . registration_requests_home_phone = True
2017-09-10 21:38:09 +02:00
# Uncomment this to request the Mobile Phone when a user registers
2017-09-16 10:51:10 +02:00
settings . auth . registration_requests_mobile_phone = True
2017-09-10 21:38:09 +02:00
# Uncomment this to have the Mobile Phone selection during registration be mandatory
#settings.auth.registration_mobile_phone_mandatory = True
# Uncomment this to request the Organisation when a user registers
2017-09-16 10:51:10 +02:00
settings . auth . registration_requests_organisation = True
2017-09-10 21:38:09 +02:00
# Uncomment this to have the Organisation selection during registration be mandatory
2017-09-16 10:51:10 +02:00
settings . auth . registration_organisation_required = True
2018-07-12 22:31:50 +02:00
# Uncomment this to hide the Create-Organisation link in registration forms
#settings.auth.registration_organisation_link_create = False
2017-09-10 21:38:09 +02:00
# Uncomment this to have the Organisation input hidden unless the user enters a non-whitelisted domain
#settings.auth.registration_organisation_hidden = True
# Uncomment this to default the Organisation during registration
2017-09-16 10:51:10 +02:00
settings . auth . registration_organisation_default = " My Organisation "
2017-09-10 21:38:09 +02:00
# Uncomment this to request the Organisation Group when a user registers
2018-02-18 10:11:44 +01:00
#settings.auth.registration_requests_organisation_group = True
2017-09-10 21:38:09 +02:00
# Uncomment this to have the Organisation Group selection during registration be mandatory
#settings.auth.registration_organisation_group_required = True
# Uncomment this to request the Site when a user registers
#settings.auth.registration_requests_site = True
# Uncomment this to allow Admin to see Organisations in User Admin even if the Registration doesn't request this
#settings.auth.admin_sees_organisation = True
# Uncomment to set the default role UUIDs assigned to newly-registered users
# This is a dictionary of lists, where the key is the realm that the list of roles applies to
# The key 0 implies not realm restricted
# The keys "organisation_id" and "site_id" can be used to indicate the user's "organisation_id" and "site_id"
#settings.auth.registration_roles = { 0: ["STAFF", "PROJECT_EDIT"]}
# Whether the first user to register for an Org should get the ORG_ADMIN role for that Org
2017-09-16 10:51:10 +02:00
settings . auth . org_admin_to_first = True
2017-09-10 21:38:09 +02:00
# Define which entity types to use as realm entities in role manager
2017-09-16 10:51:10 +02:00
settings . auth . realm_entity_types = ( " org_organisation " , )
2017-09-10 21:38:09 +02:00
# Uncomment to activate entity role manager tabs for OrgAdmins
2017-09-16 10:51:10 +02:00
settings . auth . entity_role_manager = True
2017-09-10 21:38:09 +02:00
# Define modules for entity role manager
#settings.auth.role_modules = OrderedDict([])
# Define access levels for entity role manager
#settings.auth.access_levels = OrderedDict([])
# Uncomment this to enable record approval
2017-09-27 08:56:18 +02:00
settings . auth . record_approval = True
2017-09-10 21:38:09 +02:00
# Uncomment this and specify a list of tablenames for which record approval is required
2017-09-27 08:56:18 +02:00
settings . auth . record_approval_required_for = ( " cap_alert " , )
settings . auth . record_approval_manual = ( " cap_alert " , )
2017-09-10 21:38:09 +02:00
# Uncomment this to request an image when users register
#settings.auth.registration_requests_image = True
# Uncomment this to direct newly-registered users to their volunteer page to be able to add extra details
# NB This requires Verification/Approval to be Off
# @ToDo: Extend to all optional Profile settings: Homepage, Twitter, Facebook, Mobile Phone, Image
#settings.auth.registration_volunteer = True
# Terms of Service to be able to Register on the system
# https://termsfeed.com/terms-conditions/generator/
# uses <template>/views/tos.html
2017-12-01 19:25:47 +01:00
settings . auth . terms_of_service = True
2019-12-20 17:53:39 +01:00
# Enable options for tracking user consent
settings . auth . consent_tracking = True
2017-09-10 21:38:09 +02:00
# Uncomment this to allow users to Login using Gmail's SMTP
#settings.auth.gmail_domains = ["gmail.com"]
# Uncomment this to allow users to Login using Office365's SMTP
#settings.auth.office365_domains = ["microsoft.com"]
# Uncomment this to allow users to Login using OpenID
#settings.auth.openid = True
2019-12-20 17:53:39 +01:00
# Uncomment this to allow users to login using master key
#settings.auth.masterkey = True
2017-09-10 21:38:09 +02:00
# Uncomment this to block password changes since managed externally (OpenID / SMTP / LDAP)
2019-12-20 17:53:39 +01:00
#settings.auth.password_changes = False
# Uncomment this to disable password retrieval (e.g. if impractical or unsafe)
#settings.auth.password_retrieval = False
2017-09-10 21:38:09 +02:00
# Uncomment this to enable presence records on login based on HTML5 geolocations
#settings.auth.set_presence_on_login = True
# Uncomment this and specify a list of location levels to be ignored by presence records
#settings.auth.ignore_levels_for_presence = ("L0", "L1", "L2", "L3")
# Uncomment this to enable the creation of new locations if a user logs in from an unknown location. Warning: This may lead to many useless location entries
#settings.auth.create_unknown_locations = True
# L10n settings
2019-12-20 17:53:39 +01:00
# Languages used in the deployment (used for Language Toolbar, GIS Locations, etc)
2017-09-10 21:38:09 +02:00
# http://www.loc.gov/standards/iso639-2/php/code_list.php
2017-10-11 22:37:23 +02:00
languages = OrderedDict ( [
2018-03-14 21:25:20 +01:00
( " cs " , " Czech " ) ,
2020-05-02 19:26:11 +02:00
( " en " , " English " ) ,
2017-09-10 21:38:09 +02:00
] )
2017-10-11 22:37:23 +02:00
settings . L10n . languages = languages
settings . cap . languages = languages
2017-09-10 21:38:09 +02:00
# Default language for Language Toolbar (& GIS Locations in future)
2017-09-16 13:50:00 +02:00
settings . L10n . default_language = " cs "
2017-09-10 21:38:09 +02:00
# Uncomment to Hide the language toolbar
#settings.L10n.display_toolbar = False
# Default timezone for users
2019-12-20 17:53:39 +01:00
settings . L10n . timezone = " Europe/Prague "
2017-09-10 21:38:09 +02:00
# Uncomment these to use US-style dates in English
#settings.L10n.date_format = "%m-%d-%Y"
#settings.L10n.time_format = "%H:%M:%S"
# Start week on Sunday
#settings.L10n.firstDOW = 0
# Number formats (defaults to ISO 31-0)
# Decimal separator for numbers (defaults to ,)
2017-09-16 10:51:10 +02:00
#settings.L10n.decimal_separator = "."
2017-09-10 21:38:09 +02:00
# Thousands separator for numbers (defaults to space)
#settings.L10n.thousands_separator = ","
# Default Country Code for telephone numbers
2017-09-23 15:25:13 +02:00
settings . L10n . default_country_code = 420
2017-09-10 21:38:09 +02:00
# Make last name in person/user records mandatory
2017-09-16 10:51:10 +02:00
settings . L10n . mandatory_lastname = True
2017-09-10 21:38:09 +02:00
# Configure the list of Religions
2017-09-16 10:51:10 +02:00
settings . L10n . religions = { " none " : T ( " none " ) ,
" christian " : T ( " Christian " ) ,
" muslim " : T ( " Muslim " ) ,
" jewish " : T ( " Jewish " ) ,
" buddhist " : T ( " Buddhist " ) ,
" hindu " : T ( " Hindu " ) ,
" bahai " : T ( " Bahai " ) ,
" other " : T ( " other " )
}
2017-09-10 21:38:09 +02:00
# Uncomment this to Translate CMS Series Names
#settings.L10n.translate_cms_series = True
# Uncomment this to Translate Layer Names
2017-10-02 11:28:24 +02:00
settings . L10n . translate_gis_layer = True
2017-09-10 21:38:09 +02:00
# Uncomment this to Translate Location Names
2017-10-02 11:28:24 +02:00
settings . L10n . translate_gis_location = True
2017-09-10 21:38:09 +02:00
# Uncomment this for Alternate Location Names
#settings.L10n.name_alt_gis_location = True
# Uncomment this to Translate Organisation Names/Acronyms
#settings.L10n.translate_org_organisation = True
# Uncomment this to Translate Site Names
#settings.L10n.translate_org_site = True
2017-09-18 22:29:17 +02:00
# PDF font
2019-04-13 20:49:19 +02:00
settings . L10n . pdf_export_font = [ ' Helvetica ' , ' Helvetica-Bold ' ]
2017-09-10 21:38:09 +02:00
# Finance settings
2017-09-16 10:51:10 +02:00
settings . fin . currencies = {
" BTC " : " BitCoin " ,
" CZK " : " Czech Koruna " ,
" EUR " : " Euros " ,
" GBP " : " Great British Pounds " ,
" USD " : " United States Dollars " ,
}
settings . fin . currency_default = " CZK "
2017-09-10 21:38:09 +02:00
#settings.fin.currency_writable = False # False currently breaks things
# PDF settings
2019-12-20 17:53:39 +01:00
# Default page size (defaults to A4)
#settings.base.pdf_size = "Letter"
# Default page orientation (defaults to "Auto" to auto-adapt for wide tables)
#settings.base.pdf_orientation = "Landscape"
2017-09-10 21:38:09 +02:00
# Location of Logo used in pdfs headers
#settings.ui.pdf_logo = "static/img/mylogo.png"
2019-12-20 17:53:39 +01:00
# Maximum number of records in PDF exports (None for unlimited)
#settings.base.pdf_max_rows = 1000
2017-09-10 21:38:09 +02:00
#Uncomment to add a title row to XLS exports
#settings.base.xls_title_row = True
# GIS (Map) settings
# Size of the Embedded Map
# Change this if-required for your theme
# NB API can override this in specific modules
#settings.gis.map_height = 600
#settings.gis.map_width = 1000
# Restrict the Location Selector to just certain countries
# NB This can also be over-ridden for specific contexts later
# e.g. Activities filtered to those of parent Project
#settings.gis.countries = ("US",)
# Uncomment to pass Addresses imported from CSV to a Geocoder to try and automate Lat/Lon
2017-09-16 10:51:10 +02:00
settings . gis . geocode_imported_addresses = " google "
2017-09-10 21:38:09 +02:00
# Hide the Map-based selection tool in the Location Selector
#settings.gis.map_selector = False
# Show LatLon boxes in the Location Selector
2017-09-16 10:51:10 +02:00
settings . gis . latlon_selector = True
2017-09-10 21:38:09 +02:00
# Use Building Names as a separate field in Street Addresses?
#settings.gis.building_name = False
# Use a non-default fillColor for Clustered points
#settings.gis.cluster_fill = "8087ff"
# Disable the label for clustered points
#settings.gis.cluster_label = False
# Use a non-default strokeColor for Clustered points
#settings.gis.cluster_stroke = "2b2f76"
# Use a non-default fillColor for Selected points
#settings.gis.select_fill = "ffdc33"
# Use a non-default strokeColor for Selected points
#settings.gis.select_stroke = "ff9933"
# Display Resources recorded to Admin-Level Locations on the map
# @ToDo: Move into gis_config?
# Uncomment to fall back to country LatLon to show resources, if nothing better available
#settings.gis.display_L0 = True
# Currently unused
#settings.gis.display_L1 = False
# Uncomment this to do deduplicate lookups on Imports via PCode (as alternative to Name)
#settings.gis.lookup_code = "PCode"
# Set this if there will be multiple areas in which work is being done,
# and a menu to select among them is wanted.
#settings.gis.menu = "Maps"
# Maximum Marker Size
# (takes effect only on display)
#settings.gis.marker_max_height = 35
#settings.gis.marker_max_width = 30
# Duplicate Features so that they show wrapped across the Date Line?
# Points only for now
# lon<0 have a duplicate at lon+360
# lon>0 have a duplicate at lon-360
#settings.gis.duplicate_features = True
# Uncomment to use CMS to provide Metadata on Map Layers
#settings.gis.layer_metadata = True
# Uncomment to show Clear Layers tool
2017-09-16 10:51:10 +02:00
settings . gis . clear_layers = True
2017-09-10 21:38:09 +02:00
# Uncomment to hide the Geolocation control
#settings.gis.geolocate_control = False
# Uncomment to hide the WMS GetFeatureInfo control
#settings.gis.getfeature_control = False
# Uncomment to hide Layer Properties tool
#settings.gis.layer_properties = False
# Uncomment to hide the Base Layers folder in the LayerTree
#settings.gis.layer_tree_base = False
# Uncomment to hide the Overlays folder in the LayerTree
#settings.gis.layer_tree_overlays = False
# Uncomment to change the label of the Overlays folder in the LayerTree
#settings.gis.label_overlays = "Overlays"
# Uncomment to not expand the folders in the LayerTree by default
#settings.gis.layer_tree_expanded = False
# Uncomment to have custom folders in the LayerTree use Radio Buttons
#settings.gis.layer_tree_radio = True
# Uncomment to display the Map Legend as a floating DIV
2017-09-16 10:51:10 +02:00
settings . gis . legend = " float "
2019-12-20 17:53:39 +01:00
# Uncomment to use scalability-optimized options lookups in location filters
#settings.gis.location_filter_bigtable_lookups = True
2017-09-10 21:38:09 +02:00
# Uncomment to prevent showing LatLon in Location Represents
#settings.gis.location_represent_address_only = True
# Mouse Position: 'normal', 'mgrs' or None
#settings.gis.mouse_position = "mgrs"
# Uncomment to show the Navigation controls on the toolbar
2017-10-02 11:28:24 +02:00
settings . gis . nav_controls = True
2017-09-10 21:38:09 +02:00
# Uncomment to hide the Overview map
#settings.gis.overview = False
# Uncomment to hide the permalink control
#settings.gis.permalink = False
# Resources which can be directly added to the main map
#settings.gis.poi_create_resources = None
2017-09-16 10:51:10 +02:00
settings . gis . poi_create_resources = [ { " c " : " event " , " f " : " incident_report " , " table " : " gis_poi " , " label " : T ( " Add Incident Report " ) , " tooltip " : T ( " Add Incident Report " ) , " layer " : " Incident Reports " , " location " : " popup " } ]
2017-09-10 21:38:09 +02:00
# PoIs to export in KML/OSM feeds from Admin locations
#settings.gis.poi_export_resources = ["cr_shelter", "hms_hospital", "org_office"]
# Uncomment to show the Print control:
# http://eden.sahanafoundation.org/wiki/UserGuidelines/Admin/MapPrinting
#settings.gis.print_button = True
# Uncomment to save a screenshot whenever a saved map is saved
#settings.gis.config_screenshot = (820, 410)
# Uncomment to hide the Save control, or set to "float"
#settings.gis.save = False
# Uncomment to hide the ScaleLine control
#settings.gis.scaleline = False
# Uncomment to hide the GeoNames search box
#settings.gis.search_geonames = False
# Uncomment to modify the Simplify Tolerance
2018-02-12 13:24:36 +01:00
settings . gis . simplify_tolerance = 0
2017-09-10 21:38:09 +02:00
# Uncomment this for highly-zoomed maps showing buildings
#settings.gis.precision = 5
# Uncomment to Hide the Toolbar from the main Map
#settings.gis.toolbar = False
# Uncomment to show Catalogue Layers in Map Widgets (e.g. Profile & Summary pages)
#settings.gis.widget_catalogue_layers = True
# Uncomment to show WMS Browser in Map Widgets (e.g. Profile & Summary pages)
# - NB This also requires the active gis_config to have one configured
#settings.gis.widget_wms_browser = True
# Uncomment to hide the Zoom control
#settings.gis.zoomcontrol = False
# Uncomment to open Location represent links in a Popup Window
#settings.gis.popup_location_link = True
# Uncomment to include WKT in XML exports
#settings.gis.xml_wkt = True
# GeoNames username
2017-09-30 22:57:10 +02:00
settings . gis . geonames_username = " trendspotter "
2017-09-10 21:38:09 +02:00
# Messaging Settings
# If you wish to use a parser.py in another folder than "default"
#settings.msg.parser = "mytemplatefolder"
# Uncomment to turn off enforcement of E.123 international phone number notation
#settings.msg.require_international_phone_numbers = False
# Uncomment to make basestation codes unique
#settings.msg.basestation_code_unique = True
# Use 'soft' deletes
#settings.security.archive_not_delete = False
# AAA Settings
# Security Policy
# http://eden.sahanafoundation.org/wiki/S3AAA#System-widePolicy
# 1: Simple (default): Global as Reader, Authenticated as Editor
# 2: Editor role required for Update/Delete, unless record owned by session
# 3: Apply Controller ACLs
# 4: Apply both Controller & Function ACLs
# 5: Apply Controller, Function & Table ACLs
# 6: Apply Controller, Function, Table ACLs and Entity Realm
# 7: Apply Controller, Function, Table ACLs and Entity Realm + Hierarchy
# 8: Apply Controller, Function, Table ACLs, Entity Realm + Hierarchy and Delegations
#
2017-09-16 10:51:10 +02:00
settings . security . policy = 7 # Organisation-ACLs
2017-09-10 21:38:09 +02:00
# Ownership-rule for records without owner:
# True = not owned by any user (strict ownership, default)
# False = owned by any authenticated user
#settings.security.strict_ownership = False
# Audit
# - can be a callable for custom hooks (return True to also perform normal logging, or False otherwise)
# NB Auditing (especially Reads) slows system down & consumes diskspace
#settings.security.audit_read = True
#settings.security.audit_write = True
# Lock-down access to Map Editing
#settings.security.map = True
# Allow non-MapAdmins to edit hierarchy locations? Defaults to True if not set.
# (Permissions can be set per-country within a gis_config)
#settings.gis.edit_Lx = False
# Allow non-MapAdmins to edit group locations? Defaults to False if not set.
#settings.gis.edit_GR = True
# Note that editing of locations used as regions for the Regions menu is always
# restricted to MapAdmins.
# Uncomment to disable that LatLons are within boundaries of their parent
#settings.gis.check_within_parent_boundaries = False
# Uncomment to Disable the Postcode selector in the LocationSelector
#settings.gis.postcode_selector = False
# Increase these if having scalability issues or slow connections
#settings.ui.autocomplete_delay = 800
#settings.ui.autocomplete_min_chars = 2
#settings.ui.filter_auto_submit = 800
#settings.ui.report_auto_submit = 800
# Enable this for a UN-style deployment
#settings.ui.cluster = True
# Enable this to use the label 'Camp' instead of 'Shelter'
#settings.ui.camp = True
# Enable this to have Open links in IFrames open a full page in a new tab
2017-10-02 11:28:24 +02:00
settings . ui . iframe_opens_full = True
2017-09-10 21:38:09 +02:00
# Enable this to change the label for 'Attachments' tabs
#settings.ui.label_attachments = "Attachments"
# Uncomment to configure the LocationSelector labels for the Map button with Points
#settings.label_locationselector_map_point_add = "Find on Map"
#settings.label_locationselector_map_point_view = "Find on Map"
# Enable this to change the label for 'Mobile Phone'
#settings.ui.label_mobile_phone = "Cell Phone"
# Enable this to change the label for 'Postcode'
#settings.ui.label_postcode = "ZIP Code"
# Enable Social Media share buttons
#settings.ui.social_buttons = True
# Enable this to show pivot table options form by default
#settings.ui.hide_report_options = False
# Uncomment to show created_by/modified_by using Names not Emails
2017-10-02 11:28:24 +02:00
settings . ui . auth_user_represent = " name "
2017-09-10 21:38:09 +02:00
# Uncomment to control the dataTables layout: https://datatables.net/reference/option/dom
# Default:
#settings.ui.datatables_dom = "fril<'dataTable_table't>pi"
# dataTables.Foundation.js would set to this:
#settings.ui.datatables_dom = "<'row'<'large-6 columns'l><'large-6 columns'f>r>t<'row'<'large-6 columns'i><'large-6 columns'p>>"
# Move the export_formats after the pagination control
#settings.ui.datatables_initComplete = '''$('.dataTables_paginate').after($('.dt-export-options'))'''
# Uncomment for dataTables to use a different paging style:
#settings.ui.datatables_pagingType = "bootstrap"
# Uncomment to restrict the export formats available
#settings.ui.export_formats = ("kml", "pdf", "rss", "xls", "xml")
# Uncomment to change the label/class of FilterForm clear buttons
#settings.ui.filter_clear = "Clear"
# Uncomment to include an Interim Save button on CRUD forms
2017-09-16 10:51:10 +02:00
settings . ui . interim_save = True
2017-09-10 21:38:09 +02:00
# Uncomment to enable icons on action buttons (requires corresponding CSS)
2017-10-02 11:28:24 +02:00
settings . ui . use_button_icons = True
2017-09-10 21:38:09 +02:00
# Uncomment to use S3MultiSelectWidget on all dropdowns (currently the Auth Registration page & LocationSelectorWidget2 listen to this)
#settings.ui.multiselect_widget = True
# Theme for the S3HierarchyWidget
#settings.ui.hierarchy_theme = dict(css = "../themes/MYTHEME",
# icons = True,
# stripes = False,
# )
# Uncomment to show a default cancel button in standalone create/update forms
2017-09-16 10:51:10 +02:00
settings . ui . default_cancel_button = True
2017-09-10 21:38:09 +02:00
# Uncomment to disable responsive behavior of datatables
#settings.ui.datatables_responsive = False
2019-12-20 17:53:39 +01:00
# Uncomment to enable double scroll bars on non-responsive datatables
#settings.ui.datatables_double_scroll = True
2017-09-10 21:38:09 +02:00
# Uncomment to modify the label of the Permalink
#settings.ui.label_permalink = "Permalink"
# Uncomment to modify the main menu logo
#settings.ui.menu_logo = URL(c="static", f="img", args=["S3menulogo.png"])
2019-12-20 17:53:39 +01:00
# Configure business hours to indicate in organizer (can be a list)
#settings.ui.organizer_business_hours = {"dow": [1,2,3,4,5], "start": "08:00", "end": "18:00"}
# Configure a time format for organizer events to override locale default
#settings.ui.organizer_time_format = "H:mm"
# Configure the snap raster width in organizer (hh:mm:ss)
#settings.ui.organizer_snap_duration = "00:15:00"
2017-09-10 21:38:09 +02:00
2018-07-12 22:31:50 +02:00
# -------------------------------------------------------------------------
# Sync
# Uncomment if this deployment exposes public data sets
settings . sync . data_repository = True
2017-09-10 21:38:09 +02:00
# -------------------------------------------------------------------------
# Asset
# Uncomment to have a specific asset type for Telephones
2017-10-02 11:28:24 +02:00
settings . asset . telephones = True
2017-09-10 21:38:09 +02:00
2019-12-20 17:53:39 +01:00
# -------------------------------------------------------------------------
# Beneficiary Registry
# --- Terminology ---
# Terminology to use when referring to cases (Beneficiary|Client|Case)
#settings.br.case_terminology = "Beneficiary"
# Terminology to use when referring to measures of assistance (Counseling|Assistance)
#settings.br.assistance_terminology = "Counseling"
# --- Need Categories ---
# Use hierarchical need categories
#settings.br.needs_hierarchical = True
# Let all orgs use a common set of need categories
#settings.br.needs_org_specific = False
# --- Basic Case Options ---
# Show the case organisation even if only one option
#settings.br.case_hide_default_org = False
# Disable assignment of cases to staff
#settings.br.case_manager = False
# Expose fields to track home address in case file
#settings.br.case_address = True
# Disable documentation of language details in case file
#settings.br.case_language_details = False
# Control household size tracking in case files: False, True or "auto" (=default)
#settings.br.household_size = "auto"
# Layout class for beneficiary ID cards
#settings.br.id_card_layout = IDCardLayout
# User roles with permission to export beneficiary ID cards
#settings.br.id_card_export_roles = ["ORG_ADMIN", "CASE_MANAGEMENT"]
# --- Case File Tabs ---
# Hide the contact info tab in case files
#settings.br.case_contacts_tab = False
# Show the ID-tab in case files
#settings.br.case_id_tab = True
# Hide the family members tab in case files
#settings.br.case_family_tab = False
# Enable case file tab to track service contacts
#settings.br.service_contacts = True
# Show tab with notes journal
#settings.br.case_notes_tab = True
# Show the photos-tab in case files
#settings.br.case_photos_tab = True
# Hide the documents-tab in case files
#settings.br.case_documents_tab = False
# --- Attachments ---
# Hide activity attachments from case documents-tab
#settings.br.case_include_activity_docs = False
# Hide case group attachments from case documents-tab
#settings.br.case_include_group_docs = False
# --- Case Activities ---
# Disable tracking of case activities
#settings.br.case_activities = False
# Disable assignment of case activities to staff
#settings.br.case_activity_manager = False
# Expose "urgent" priority for case activities (=emergencies)
#settings.br.case_activity_urgent_option = True
# Disable need categories in case activities
#settings.br.case_activity_need = False
# Use a free-text subject line in case activities
#settings.br.case_activity_subject = True
# Use a free-text field to document need details in case activities
#settings.br.case_activity_need_details = True
# Disable status and end-date for case activities
#settings.br.case_activity_status = False
# Show end-date of case activites (True=show, "writable"=allow manual edit)
#settings.br.case_activity_end_date = True
# Enable inline-updates of case activities
#settings.br.case_activity_updates = True
# Disable fields for outcome documentation
#settings.br.case_activity_outcome = False
# Allow documents to be attached to case activities
#settings.br.case_activity_documents = True
# --- Assistance Measures ---
# Disable tracking of individual assistance measures
#settings.br.manage_assistance = False
# Use separate tab to track assistance measures
#settings.br.assistance_tab = True
# Hide inline assistance measures on case activity tab
#settings.br.assistance_inline = False
# Document date+time (rather than only date) for assistance measures
#settings.br.assistance_measures_use_time = True
# Set default status of assistance measures to closed
#settings.br.assistance_measure_default_closed = True
# Disable assignment of assistance measures to staff
#settings.br.assistance_manager = False
# Disable types of assistance (e.g. if there is only one type)
#settings.br.assistance_types = False
# --- Assistance Themes ---
# Enable assistance themes
#settings.br.assistance_themes = True
# Use a common set of assistance themes rather than org-specific
#settings.br.assistance_themes_org_specific = False
# Organize assistance themes by org sector
#settings.br.assistance_themes_sectors = True
# Organize assistance themes by need type
#settings.br.assistance_themes_needs = True
# Document assistance details per theme
#settings.br.assistance_details_per_theme = True
# Enable auto-linking of assistance measure details to case activities
#settings.br.assistance_activity_autolink = True
# Disable tracking of effort (=hours spent) for assistance measures
#settings.br.assistance_track_effort = False
2017-09-10 21:38:09 +02:00
# -------------------------------------------------------------------------
# CMS
# Uncomment this to hide CMS from module index pages
2017-09-27 13:38:02 +02:00
#settings.cms.hide_index = True
2017-09-10 21:38:09 +02:00
# Uncomment to use Bookmarks in Newsfeed
#settings.cms.bookmarks = True
# Uncomment to use have Filter form in Newsfeed be open by default
#settings.cms.filter_open = True
# Uncomment to adjust filters in Newsfeed when clicking on locations instead of opening the profile page
#settings.cms.location_click_filters = True
# Uncomment to use Rich Text editor in Newsfeed
2017-09-16 10:51:10 +02:00
settings . cms . richtext = True
2017-09-10 21:38:09 +02:00
# Uncomment to show Events in Newsfeed
2017-09-16 10:51:10 +02:00
settings . cms . show_events = True
2017-09-10 21:38:09 +02:00
# Uncomment to hide Attachments in Newsfeed
#settings.cms.show_attachments = False
# Uncomment to show Links in Newsfeed
2017-09-16 10:51:10 +02:00
settings . cms . show_links = True
2017-09-10 21:38:09 +02:00
# Uncomment to show Tags in Newsfeed
2017-09-16 10:51:10 +02:00
settings . cms . show_tags = True
2017-09-10 21:38:09 +02:00
# Uncomment to show post Titles in Newsfeed
#settings.cms.show_titles = True
# Uncomment to use organisation_id instead of created_by in Newsfeed
#settings.cms.organisation = "post_organisation.organisation_id"
# Uncomment to use org_group_id in Newsfeed
#settings.cms.organisation_group = "created_by$org_group_id"
#settings.cms.organisation_group = "post_organisation_group.group_id"
# Uncomment to use person_id instead of created_by in Newsfeed
#settings.cms.person = "person_id"
# -------------------------------------------------------------------------
# Shelters
# Uncomment to use a dynamic population estimation by calculations based on registrations
#settings.cr.shelter_population_dynamic = True
# Uncomment to disable people registration in shelters
#settings.cr.people_registration = False
# Uncomment to use Tags for Shelters
2017-09-16 10:51:10 +02:00
settings . cr . tags = True
2017-09-10 21:38:09 +02:00
# Uncomment to generate tasks from shelter inspections (requires project module)
#settings.cr.shelter_inspection_tasks = True
# Configure active statuses for shelter inspection tasks (subset of project.task_status_opts)
#settings.cr.shelter_inspection_task_active_statuses = (2, 3, 6)
# -------------------------------------------------------------------------
# Disaster Victim Registry / Case Management
# Uncomment to use the term Beneficiary instead of Case
#settings.dvr.label = "Beneficiary"
# Uncomment this to enable tracking of transfer origin/destination sites
#settings.dvr.track_transfer_sites = True
# Uncomment this to enable features to manage transferability of cases
#settings.dvr.manage_transferability = True
# Uncomment this to enable household size in cases, set to "auto" for automatic counting
#settings.dvr.household_size = True
# Uncomment this to expose flags to mark appointment types as mandatory
#settings.dvr.mandatory_appointments = True
# Uncomment this to have appointments with personal presence update last_seen_on
#settings.dvr.appointments_update_last_seen_on = True
# Uncomment this to automatically update the case status when appointments are completed
#settings.dvr.appointments_update_case_status = True
# Uncomment this to automatically close appointments when registering certain case events
#settings.dvr.case_events_close_appointments = True
# Uncomment this to have allowance payments update last_seen_on
#settings.dvr.payments_update_last_seen_on = True
# Uncomment this to use service types for group/case activites
#settings.dvr.activity_use_service_type = True
# Uncomment this to use sectors in group/case activities
#settings.dvr.activity_sectors = True
# Uncomment this to use case activity types
#settings.dvr.activity_types = True
# Uncomment this to use hierarchical case activity types
#settings.dvr.activity_types_hierarchical = True
# Uncomment this to use status field in case activities
#settings.dvr.case_activity_use_status = True
2019-12-20 17:53:39 +01:00
# Uncomment this to disable follow-up fields in case activities
#settings.dvr.case_activity_follow_up = False
# Uncomment this to include case activity docs on beneficiary documents-tab
#settings.dvr.case_include_activity_docs = True
# Uncomment this to include case group docs on beneficiary documents-tab
#settings.dvr.case_include_group_docs = True
2017-09-10 21:38:09 +02:00
# Uncomment this if Case activities use multiple Needs
#settings.dvr.case_activity_needs_multiple = True
# Uncomment this to use service types for needs
#settings.dvr_needs_use_service_type = True
# Uncomment this to use hierarchical need types
#settings.dvr.needs_hierarchical = True
# Uncomment this to use hierarchical vulnerability types
#settings.dvr.vulnerability_types_hierarchical = True
# Uncomment this to manage individual response actions in case activities
#settings.dvr.manage_response_actions = True
2019-12-20 17:53:39 +01:00
# Uncomment this to not use response action types
#settings.dvr.response_types = False
# Uncomment this to use response themes
#settings.dvr.response_themes = True
# Uncomment this to not use org-specific response themes
#settings.dvr.response_themes_org_specific = False
# Uncomment this to link response themes to org sectors
#settings.dvr.response_themes_sectors = True
# Uncomment this to link response themes to needs
#settings.dvr.response_themes_needs = True
# Uncomment this to automatically link responses to case activities
#settings.dvr.response_activity_autolink = True
# Uncomment this to activate features for response planning
#settings.dvr.response_planning = True
# Uncomment this to use a separate due-date for responses
#settings.dvr.response_due_date = True
# Uncomment this to use date+time for responses (instead of just date)
#settings.dvr.response_use_time = True
2017-09-10 21:38:09 +02:00
# Configure a regular expression pattern for ID Codes (QR Codes)
#settings.dvr.id_code_pattern = "(?P<label>[^,]*),(?P<first_name>[^,]*),(?P<last_name>[^,]*),(?P<date_of_birth>[^,]*)"
# Uncomment this to show a warning during event registration if the person is not currently checked-in
#settings.dvr.event_registration_checkin_warning = True
# Uncomment this to show profile pictures in event registration UI only on demand
#settings.dvr.event_registration_show_picture = False
# -------------------------------------------------------------------------
# Events
# Uncomment to use the term Disaster instead of Event
#settings.event.label = "Disaster"
2018-07-12 22:31:50 +02:00
# Uncomment to not use Incidents under Events
#settings.event.incident = False
2017-09-10 21:38:09 +02:00
# Uncomment to preserve linked Incidents when an Event is deleted
# NB Changing this setting requires a DB migration
#settings.event.cascade_delete_incidents = False
# Make Event Types Hierarchical
2017-10-02 11:28:24 +02:00
settings . event . types_hierarchical = True
2017-09-10 21:38:09 +02:00
# Make Incident Types Hierarchical
2017-10-02 11:28:24 +02:00
settings . event . incident_types_hierarchical = True
2017-09-10 21:38:09 +02:00
# Uncomment to allow the use of Exercise Events
2017-09-16 10:51:10 +02:00
settings . event . exercise = True
2017-09-10 21:38:09 +02:00
# Show tab for Event Dispatch
#settings.event.dispatch_tab = False
# Hide tab for Event Impacts
#settings.event.impact_tab = False
# Hide tab for Event Collection Targets
#settings.event.target_tab = False
# Hide tab for Event Collections
#settings.event.collection_tab = False
# Hide tab for Incident Dispatch
#settings.event.incident_dispatch_tab = False
# Show tab for Incident Impacts
2017-09-16 10:51:10 +02:00
settings . event . incident_impact_tab = True
2017-09-10 21:38:09 +02:00
# Show tab for Incident Teams
2017-09-16 10:51:10 +02:00
settings . event . incident_teams_tab = True
2017-09-10 21:38:09 +02:00
# -------------------------------------------------------------------------
# Members
# Hide Membership Types
#settings.member.membership_types = False
# Show a CV tab for Members
2017-09-16 10:51:10 +02:00
settings . member . cv_tab = True
2017-09-10 21:38:09 +02:00
# -------------------------------------------------------------------------
# Persons
# Uncomment to allow person imports to match even without email addresses
2017-09-16 10:51:10 +02:00
settings . pr . import_update_requires_email = False
2017-09-10 21:38:09 +02:00
# Uncomment this to enable support for third gender
#settings.pr.hide_third_gender = False
# Uncomment to a fuzzy search for duplicates in the new AddPersonWidget2
2017-09-16 10:51:10 +02:00
settings . pr . lookup_duplicates = True
2017-09-10 21:38:09 +02:00
# Uncomment to hide fields in S3AddPersonWidget[2]
#settings.pr.request_dob = False
#settings.pr.request_email = False
#settings.pr.request_gender = False
# Uncomment to show field in S3AddPersonWidget
#settings.pr.request_home_phone = True
# Uncomment to modify the order of Names
2017-09-16 10:51:10 +02:00
settings . pr . name_format = " %(first_name)s %(middle_name)s %(last_name)s "
2017-09-10 21:38:09 +02:00
# Uncomment to prevent selecting existing users in the old S3AddPersonWidget
2017-09-16 10:51:10 +02:00
settings . pr . select_existing = False
2017-09-10 21:38:09 +02:00
# Uncomment to prevent showing HR details in S3PersonAutocompleteWidget results
#settings.pr.search_shows_hr_details = False
# Uncomment to hide Emergency Contacts in Person Contacts page
#settings.pr.show_emergency_contacts = False
# Uncomment to hide the Address tab in person details
#settings.pr.use_address = False
# Show separate Public and Private Contacts Tabs
2017-09-16 10:51:10 +02:00
settings . pr . contacts_tabs = ( " public " , " private " )
2019-12-20 17:53:39 +01:00
# Uncomment this to allow persons to belong to multiple case groups ("households")
#settings.pr.multiple_case_groups = True
2017-09-10 21:38:09 +02:00
# -------------------------------------------------------------------------
# Organisations
# Uncomment to use an Autocomplete for Organisation lookup fields
#settings.org.autocomplete = True
# Enable the Organisation Sector field
2017-09-16 10:51:10 +02:00
settings . org . sector = True
2018-07-12 22:31:50 +02:00
# But hide it from the rheader
#settings.org.sector_rheader = False
2017-09-10 21:38:09 +02:00
# Enable the use of Organisation Branches
2017-09-16 10:51:10 +02:00
settings . org . branches = True
2017-09-10 21:38:09 +02:00
# Show branches as tree rather than as table
2017-10-11 20:19:51 +02:00
#settings.org.branches_tree_view = True
2017-09-10 21:38:09 +02:00
# Make Facility Types Hierarchical
2017-09-16 10:51:10 +02:00
settings . org . facility_types_hierarchical = True
2017-09-10 21:38:09 +02:00
# Enable the use of Organisation Groups & what their name is
#settings.org.groups = "Coalition"
#settings.org.groups = "Network"
# Organisation Location context
2017-09-16 10:51:10 +02:00
settings . org . organisation_location_context = " organisation_location.location_id "
2017-09-10 21:38:09 +02:00
# Make Organisation Types Hierarchical
2017-09-16 10:51:10 +02:00
settings . org . organisation_types_hierarchical = True
2017-09-10 21:38:09 +02:00
# Make Organisation Types Multiple
2017-09-16 10:51:10 +02:00
settings . org . organisation_types_multiple = True
2018-07-12 22:31:50 +02:00
# Show Organisation Types in the rheader
settings . org . organisation_type_rheader = True
2017-09-10 21:38:09 +02:00
# Enable the use of Organisation Regions
2017-09-16 10:51:10 +02:00
settings . org . regions = True
2017-09-10 21:38:09 +02:00
# Make Organisation Regions Hierarchical
2017-09-16 10:51:10 +02:00
settings . org . regions_hierarchical = True
2017-09-10 21:38:09 +02:00
# Enable the use of Organisation Region Countries
2017-09-16 10:51:10 +02:00
settings . org . region_countries = True
2017-09-10 21:38:09 +02:00
# Uncomment to show a Tab for Organisation Resources
2017-09-16 10:51:10 +02:00
settings . org . resources_tab = True
2017-09-10 21:38:09 +02:00
# Make Services Hierarchical
2017-09-16 10:51:10 +02:00
settings . org . services_hierarchical = True
2017-09-10 21:38:09 +02:00
# Set the length of the auto-generated org/site code the default is 10
2017-09-19 10:28:02 +02:00
#settings.org.site_code_len = 10
2017-09-10 21:38:09 +02:00
# Set the label for Sites
2017-09-16 10:51:10 +02:00
settings . org . site_label = " Facility "
2017-09-10 21:38:09 +02:00
# Uncomment to show the date when a Site (Facilities-only for now) was last contacted
2017-09-16 10:51:10 +02:00
settings . org . site_last_contacted = True
2017-09-10 21:38:09 +02:00
# Uncomment to use an Autocomplete for Site lookup fields
#settings.org.site_autocomplete = True
# Extra fields to search in Autocompletes & display in Representations
#settings.org.site_autocomplete_fields = ("instance_type", "location_id$L1", "location_id$addr_street", "organisation_id$name")
# Uncomment to hide inv & req tabs from Sites
#settings.org.site_inv_req_tabs = False
# Uncomment to allow Sites to be staffed by Volunteers
2017-09-16 10:51:10 +02:00
settings . org . site_volunteers = True
2017-09-10 21:38:09 +02:00
# Enable certain fields just for specific Organisations
# Requires a call to settings.set_org_dependent_field(field)
# empty list => disabled for all (including Admin)
#settings.org.dependent_fields = \
# {#"<table name>.<field name>" : ["<Organisation Name>"],
# "pr_person_details.mother_name" : [],
# "pr_person_details.father_name" : [],
# "pr_person_details.company" : [],
# "pr_person_details.affiliations" : [],
# "vol_volunteer.active" : [],
# "vol_volunteer_cluster.vol_cluster_type_id" : [],
# "vol_volunteer_cluster.vol_cluster_id" : [],
# "vol_volunteer_cluster.vol_cluster_position_id" : [],
# }
# Uncomment to make Office codes unique
#settings.org.office_code_unique = True
# Uncomment to make Facility codes unique
#settings.org.facility_code_unique = True
# Uncomment to use Tags for Organisations, Offices & Facilities
2017-09-16 10:51:10 +02:00
settings . org . tags = True
2017-09-10 21:38:09 +02:00
# -------------------------------------------------------------------------
# Human Resource Management
# Uncomment to change the label for 'Staff'
2017-09-23 15:25:13 +02:00
#settings.hrm.staff_label = "Contacts"
2017-09-10 21:38:09 +02:00
# Uncomment to allow Staff & Volunteers to be registered without an email address
#settings.hrm.email_required = False
# Uncomment to allow Staff & Volunteers to be registered without an Organisation
2017-09-16 10:51:10 +02:00
settings . hrm . org_required = False
2019-12-20 17:53:39 +01:00
# Uncomment if their are only Staff & Volunteers from a single Organisation with no Branches
2017-09-10 21:38:09 +02:00
#settings.hrm.multiple_orgs = False
# Uncomment to disable the 'Send Message' action button
#settings.hrm.compose_button = False
# Uncomment to allow HR records to be deletable rather than just marking them as obsolete
2017-09-16 10:51:10 +02:00
settings . hrm . deletable = True
2017-09-10 21:38:09 +02:00
# Uncomment to hide Job Titles
#settings.hrm.use_job_titles = False
# Uncomment to allow HRs to have multiple Job Titles
2017-09-16 10:51:10 +02:00
settings . hrm . multiple_job_titles = True
2017-09-10 21:38:09 +02:00
# Uncomment to have each root Org use a different Job Title Catalog
2017-09-16 10:51:10 +02:00
settings . hrm . org_dependent_job_titles = True
2019-12-20 17:53:39 +01:00
# Uncomment to display & search by National ID
#settings.hrm.use_national_id = True
2017-09-10 21:38:09 +02:00
# Uncomment to hide the Staff resource
#settings.hrm.show_staff = False
# Uncomment to have Staff use their Home Address as fallback if they have no Site defined
2017-09-16 10:51:10 +02:00
settings . hrm . location_staff = ( " site_id " , " person_id " )
2017-09-10 21:38:09 +02:00
# Uncomment to have Volunteers use their Site Address as fallback if they have no Home Address defined
2017-09-16 10:51:10 +02:00
settings . hrm . location_vol = ( " person_id " , " site_id " )
2017-09-10 21:38:09 +02:00
# Uncomment this to allow multiple site contacts per site (e.g. if needing a separate contact per sector)
2017-09-16 10:51:10 +02:00
settings . hrm . site_contact_unique = False
2017-09-10 21:38:09 +02:00
# Uncomment to allow hierarchical categories of Skills, which each need their own set of competency levels.
2017-09-16 10:51:10 +02:00
settings . hrm . skill_types = True
2017-09-10 21:38:09 +02:00
# Uncomment to disable Staff experience
#settings.hrm.staff_experience = False
# Uncomment to enable Volunteer 'active' field
# - can also be made a function which is called to calculate the status based on recorded hours
# Custom label for Organisations in HR module
2017-09-16 10:51:10 +02:00
settings . hrm . organisation_label = " Organization / Branch "
2017-09-10 21:38:09 +02:00
# Custom label for Top-level Organisations in HR module
2017-09-16 10:51:10 +02:00
settings . hrm . root_organisation_label = " Organization "
settings . hrm . vol_active = True
2017-09-10 21:38:09 +02:00
# Uncomment to define a Tooltip to show when viewing the Volunteer 'active' field
2017-09-16 10:51:10 +02:00
settings . hrm . vol_active_tooltip = " A volunteer is defined as active if they ' ve participated in an average of 8 or more hours of Program work or Trainings per month in the last year "
2017-09-10 21:38:09 +02:00
# Uncomment to disable Volunteer experience
#settings.hrm.vol_experience = False
# Uncomment to show the Organisation name in HR represents
2017-09-16 10:51:10 +02:00
settings . hrm . show_organisation = True
2017-09-10 21:38:09 +02:00
# Uncomment to consolidate tabs into a single CV
#settings.hrm.cv_tab = True
# Uncomment to consolidate tabs into Staff Record (set to False to hide the tab)
#settings.hrm.record_tab = "record"
# Uncomment to disable the use of Volunteer Awards
#settings.hrm.use_awards = False
# Uncomment to disable the use of HR Certificates
#settings.hrm.use_certificates = False
# Uncomment to filter certificates by (root) Organisation & hence not allow Certificates from other orgs to be added to a profile (except by Admin)
#settings.hrm.filter_certificates = True
# Uncomment to auto-create certificates for courses
#settings.hrm.create_certificates_from_courses = True
# Uncomment to enable the use of Staff/Volunteer IDs
2017-09-16 10:51:10 +02:00
settings . hrm . use_code = True
2017-09-10 21:38:09 +02:00
# Uncomment to disable the use of HR Credentials
#settings.hrm.use_credentials = False
# Uncomment to disable the use of HR Description
#settings.hrm.use_description = None
# Uncomment to enable the use of HR Education
#settings.hrm.use_education = True
# Uncomment to disable the use of HR ID Tab
#settings.hrm.use_id = False
# Uncomment to disable the use of HR Address Tab
#settings.hrm.use_address = False
# Uncomment to disable the use of HR Skills
#settings.hrm.use_skills = False
# Uncomment to enable tracking of staff salaries
#settings.hrm.salary = True
# Uncomment to disable the use of HR Teams
#settings.hrm.teams = False
# Uncomment to disable the use of HR Trainings
#settings.hrm.use_trainings = False
# Uncomment this to configure tracking of internal/external training instructors
#settings.hrm.training_instructors = "external"
# Uncomment this to modify the training filter to be AND not OR
#settings.hrm.training_filter_and = True
# Uncomment this to have Pass marks defined by Course
2017-09-16 10:51:10 +02:00
settings . hrm . course_pass_marks = True
2017-09-10 21:38:09 +02:00
# Uncomment to use activity types in experience record, specify as {"code":"label", ...}
#settings.hrm.activity_types = {"rdrt": "RDRT Mission"}
# -------------------------------------------------------------------------
# Inventory Management
#settings.inv.collapse_tabs = False
# Uncomment to customise the label for Facilities in Inventory Management
#settings.inv.facility_label = "Facility"
# Uncomment if you need a simpler (but less accountable) process for managing stock levels
#settings.inv.direct_stock_edits = True
# Uncomment to have Warehouse Types be Organisation-dependent
2017-09-16 10:51:10 +02:00
settings . inv . org_dependent_warehouse_types = True
2017-09-10 21:38:09 +02:00
# Uncomment to call Stock Adjustments, 'Stock Counts'
2017-09-16 10:51:10 +02:00
settings . inv . stock_count = True
2017-09-10 21:38:09 +02:00
# Use the term 'Order' instead of 'Shipment'
2017-09-16 10:51:10 +02:00
settings . inv . shipment_name = " order "
2017-09-10 21:38:09 +02:00
# Uncomment to validate for Unique Warehouse Codes
#settings.inv.warehouse_code_unique = True
# Uncomment to not track pack values
#settings.inv.track_pack_values = False
2017-09-16 10:51:10 +02:00
settings . inv . show_mode_of_transport = True
settings . inv . send_show_org = False
settings . inv . send_show_time_in = True
settings . inv . send_form_name = " Tally Out Sheet "
settings . inv . send_short_name = " TO "
settings . inv . send_ref_field_name = " Tally Out Number "
settings . inv . recv_form_name = " Acknowledgement Receipt for Donations Received Form "
settings . inv . recv_shortname = " ARDR "
2017-09-10 21:38:09 +02:00
# Types common to both Send and Receive
2017-10-02 11:28:24 +02:00
settings . inv . shipment_types = {
0 : T ( " " ) ,
1 : T ( " Other Warehouse " ) ,
2 : T ( " Donation " ) ,
3 : T ( " Foreign Donation " ) ,
4 : T ( " Local Purchases " ) ,
5 : T ( " Confiscated Goods from Bureau Of Customs " )
}
2017-09-10 21:38:09 +02:00
#settings.inv.send_types = {
# 21: T("Distribution")
# }
#settings.inv.send_type_default = 1
#settings.inv.recv_types = {
# 32: T("Donation"),
# 34: T("Purchase"),
# }
#settings.inv.item_status = {
# 0: current.messages["NONE"],
# 1: T("Dump"),
# 2: T("Sale"),
# 3: T("Reject"),
# 4: T("Surplus")
# }
# -------------------------------------------------------------------------
# Requests Management
# Uncomment to disable Inline Forms in Requests module
#settings.req.inline_forms = False
# Label for Inventory Requests
#settings.req.type_inv_label = "Donations"
# Label for People Requests
#settings.req.type_hrm_label = "Volunteers"
# Label for Requester
#settings.req.requester_label = "Site Contact"
# Uncomment to disable Recurring Request
#settings.req.recurring = False
#settings.req.requester_optional = True
# Uncomment if the User Account logging the Request is NOT normally the Requester
#settings.req.requester_is_author = False
# Filter Requester as being from the Site
#settings.req.requester_from_site = True
# Set the Requester as being an HR for the Site if no HR record yet & as Site contact if none yet exists
#settings.req.requester_to_site = True
#settings.req.date_writable = False
# Allow the status for requests to be set manually,
# rather than just automatically from commitments and shipments
#settings.req.status_writable = False
#settings.req.item_quantities_writable = True
#settings.req.skill_quantities_writable = True
#settings.req.show_quantity_transit = False
#settings.req.multiple_req_items = False
#settings.req.prompt_match = False
#settings.req.items_ask_purpose = False
# Uncomment to disable the Commit step in the workflow & simply move direct to Ship
#settings.req.use_commit = False
# Uncomment to have Donations include a 'Value' field
2017-09-16 10:51:10 +02:00
settings . req . commit_value = True
2017-09-10 21:38:09 +02:00
# Uncomment to allow Donations to be made without a matching Request
#settings.req.commit_without_request = True
# Uncomment to Commit Named People rather than simply Anonymous Skills
#settings.req.commit_people = True
# Uncomment if the User Account logging the Commitment is NOT normally the Committer
#settings.req.comittter_is_author = False
# Should Requests ask whether Security is required?
#settings.req.ask_security = True
# Should Requests ask whether Transportation is required?
2017-09-16 10:51:10 +02:00
settings . req . ask_transport = True
2017-09-10 21:38:09 +02:00
#settings.req.use_req_number = False
#settings.req.generate_req_number = False
#settings.req.req_form_name = "Request Issue Form"
#settings.req.req_shortname = "RIS"
# Restrict the type of requests that can be made, valid values in the
# list are ("Stock", "People", "Other"). If this is commented out then
# all types will be valid.
#settings.req.req_type = ("Stock",)
# Uncomment to enable Summary 'Site Needs' tab for Offices/Facilities
2017-09-16 10:51:10 +02:00
settings . req . summary = True
2017-09-10 21:38:09 +02:00
# Uncomment to restrict adding new commits to Completed commits
#settings.req.req_restrict_on_complete = True
# Custom Crud Strings for specific req_req types
2017-09-28 17:55:45 +02:00
#settings.req.req_crud_strings = dict()
#ADD_ITEM_REQUEST = T("Make a Request for Donations")
2017-09-10 21:38:09 +02:00
# req_req Crud Strings for Item Request (type=1)
2017-09-28 17:55:45 +02:00
#settings.req.req_crud_strings[1] = Storage(
# label_create = ADD_ITEM_REQUEST,
# title_display = T("Request for Donations Details"),
# title_list = T("Requests for Donations"),
# title_update = T("Edit Request for Donations"),
# label_list_button = T("List Requests for Donations"),
# label_delete_button = T("Delete Request for Donations"),
# msg_record_created = T("Request for Donations Added"),
# msg_record_modified = T("Request for Donations Updated"),
# msg_record_deleted = T("Request for Donations Canceled"),
# msg_list_empty = T("No Requests for Donations"))
#ADD_PEOPLE_REQUEST = T("Make a Request for Volunteers")
2017-09-10 21:38:09 +02:00
# req_req Crud Strings for People Request (type=3)
2017-09-28 17:55:45 +02:00
#settings.req.req_crud_strings[3] = Storage(
# label_create = ADD_PEOPLE_REQUEST,
# title_display = T("Request for Volunteers Details"),
# title_list = T("Requests for Volunteers"),
# title_update = T("Edit Request for Volunteers"),
# label_list_button = T("List Requests for Volunteers"),
# label_delete_button = T("Delete Request for Volunteers"),
# msg_record_created = T("Request for Volunteers Added"),
# msg_record_modified = T("Request for Volunteers Updated"),
# msg_record_deleted = T("Request for Volunteers Canceled"),
# msg_list_empty = T("No Requests for Volunteers"))
2017-09-10 21:38:09 +02:00
# -------------------------------------------------------------------------
# Supply
2018-07-12 22:31:50 +02:00
# Name of the Default Item Catalog. Do not edit after deployment
#settings.supply.catalog_default = "Default"
# Disable the use of Multiple Item Catalogs
#settings.supply.catalog_multi = False
# Disable the use of Alternative Items
2017-09-10 21:38:09 +02:00
#settings.supply.use_alt_name = False
# -------------------------------------------------------------------------
# Projects
# Uncomment this to use settings suitable for a global/regional organisation (e.g. DRR)
2017-09-16 10:51:10 +02:00
settings . project . mode_3w = True
2017-09-10 21:38:09 +02:00
# Uncomment this to use DRR (Disaster Risk Reduction) extensions
2017-09-16 10:51:10 +02:00
settings . project . mode_drr = True
2017-09-10 21:38:09 +02:00
# Uncomment this to use settings suitable for detailed Task management
2017-09-16 10:51:10 +02:00
settings . project . mode_task = True
2017-09-10 21:38:09 +02:00
# Uncomment this to use link Projects to Events
2017-09-16 10:51:10 +02:00
settings . project . event_projects = True
2017-09-10 21:38:09 +02:00
# Uncomment this to use Activities for Projects & Tasks
2017-09-16 10:51:10 +02:00
settings . project . activities = True
2017-09-10 21:38:09 +02:00
# Uncomment this to use link Activities to Events
2017-09-16 10:51:10 +02:00
settings . project . event_activities = True
2017-09-10 21:38:09 +02:00
# Uncomment this to use Activity Types for Activities & Projects
2017-09-16 10:51:10 +02:00
settings . project . activity_types = True
2017-09-10 21:38:09 +02:00
# Uncomment this to filter dates in Activities
#settings.project.activity_filter_year = True
2018-07-12 22:31:50 +02:00
# Uncomment this to not use Beneficiaries for Activities
#settings.project.get_project_activity_beneficiaries = False
# Uncomment this to not use Item Catalog for Distributions
#settings.project.activity_items = False
2017-09-10 21:38:09 +02:00
# Uncomment this to use Codes for projects
#settings.project.codes = True
# Uncomment this to call project locations 'Communities'
#settings.project.community = True
# Uncomment this to enable Demographics in 3W projects
2017-09-16 10:51:10 +02:00
settings . project . demographics = True
2017-09-10 21:38:09 +02:00
# Uncomment this to enable Hazards in 3W projects
2017-09-16 10:51:10 +02:00
settings . project . hazards = True
2017-09-10 21:38:09 +02:00
# Uncomment this to enable Indicators in projects
2017-09-16 10:51:10 +02:00
settings . project . indicators = True
2020-04-21 16:58:56 +02:00
# Uncomment this to enable Goals in projects
settings . project . goals = True
settings . project . outcomes = True
settings . project . outputs = True
2017-09-10 21:38:09 +02:00
# Uncomment this to enable Milestones in projects
2017-09-16 10:51:10 +02:00
settings . project . milestones = True
2017-09-10 21:38:09 +02:00
# Uncomment this to use Projects for Activities & Tasks
2017-09-16 10:51:10 +02:00
settings . project . projects = True
2017-09-10 21:38:09 +02:00
# Uncomment this to disable Sectors in projects
#settings.project.sectors = False
# Uncomment this to enable Programmes in projects
2017-09-16 10:51:10 +02:00
settings . project . programmes = True
2017-09-10 21:38:09 +02:00
# Uncomment this to enable Budgets in Programmes
2017-09-16 10:51:10 +02:00
settings . project . programme_budget = True
2017-09-10 21:38:09 +02:00
# Uncomment this to enable Themes in 3W projects
2017-09-16 10:51:10 +02:00
settings . project . themes = True
2017-09-10 21:38:09 +02:00
# Uncomment this to use Theme Percentages for projects
2017-09-16 10:51:10 +02:00
settings . project . theme_percentages = True
2017-09-10 21:38:09 +02:00
# Uncomment this to use multiple Budgets per project
2017-09-16 10:51:10 +02:00
settings . project . multiple_budgets = True
2017-09-10 21:38:09 +02:00
# Uncomment this to use multiple Organisations per project
2017-09-16 10:51:10 +02:00
settings . project . multiple_organisations = True
2017-09-10 21:38:09 +02:00
# Uncomment this to customise
# Links to Filtered Components for Donors & Partners
#settings.project.organisation_roles = {
# 1: T("Lead Implementer"), # T("Host National Society")
# 2: T("Partner"), # T("Partner National Society")
# 3: T("Donor"),
# 4: T("Customer"), # T("Beneficiary")?
# 5: T("Super"), # T("Beneficiary")?
#}
#settings.project.organisation_lead_role = 1
# Uncomment to customise the list of options for the Priority of a Task.
# NB Be very cautious about doing this (see docstring in modules/s3cfg.py)
#settings.project.task_priority_opts =
# Uncomment to customise the list of options for the Status of a Task.
# NB Be very cautious about doing this (see docstring in modules/s3cfg.py)
#settings.project.task_status_opts =
# -------------------------------------------------------------------------
# Incidents
# Uncomment this to use vehicles when responding to Incident Reports
#settings.irs.vehicle = True
# -------------------------------------------------------------------------
# Transport
# Uncomment to make Airport codes unique
#settings.transport.airport_code_unique = True
# Uncomment to make Seaport codes unique
#settings.transport.seaport_code_unique = True
# Uncomment to make Heliport codes unique
#settings.transport.heliport_code_unique = True
# -------------------------------------------------------------------------
# Filter Manager
#settings.search.filter_manager = False
# if you want to have videos appearing in /default/video
#settings.base.youtube_id = [dict(id = "introduction",
# title = T("Introduction"),
# video_id = "HR-FtR2XkBU"),]
# -----------------------------------------------------------------------------
# Mobile Forms
# Configure mobile forms (example), see modules/s3cfg.py for details
#settings.mobile.forms = [
# ("Beneficiaries", "pr_person", {"c": "dvr", "f": "person"}),
#]
# Disable mobile forms for dynamic tables:
#settings.mobile.dynamic_tables = False
# -----------------------------------------------------------------------------
# XForms
# Configure xform resources (example)
#settings.xforms.resources = [("Request", "req_req")]
# -------------------------------------------------------------------------
# Comment/uncomment modules here to disable/enable them
# @ToDo: Have the system automatically enable migrate if a module is enabled
# Modules menu is defined in modules/eden/menu.py
settings . modules = OrderedDict ( [
# Core modules which shouldn't be disabled
( " default " , Storage (
name_nice = T ( " Home " ) ,
restricted = False , # Use ACLs to control access to this module
access = None , # All Users (inc Anonymous) can see this module in the default menu & access the controller
module_type = None # This item is not shown in the menu
) ) ,
( " admin " , Storage (
name_nice = T ( " Administration " ) ,
#description = "Site Administration",
restricted = True ,
access = " |1| " , # Only Administrators can see this module in the default menu & access the controller
module_type = None # This item is handled separately for the menu
) ) ,
( " appadmin " , Storage (
name_nice = T ( " Administration " ) ,
#description = "Site Administration",
restricted = True ,
module_type = None # No Menu
) ) ,
( " errors " , Storage (
name_nice = T ( " Ticket Viewer " ) ,
#description = "Needed for Breadcrumbs",
restricted = False ,
module_type = None # No Menu
) ) ,
2019-12-20 17:53:39 +01:00
( " setup " , Storage (
name_nice = T ( " Setup " ) ,
#description = "WebSetup",
restricted = True ,
access = " |1| " , # Only Administrators can see this module in the default menu & access the controller
module_type = None # No Menu
) ) ,
2017-09-10 21:38:09 +02:00
( " sync " , Storage (
name_nice = T ( " Synchronization " ) ,
#description = "Synchronization",
restricted = True ,
access = " |1| " , # Only Administrators can see this module in the default menu & access the controller
module_type = None # This item is handled separately for the menu
) ) ,
( " tour " , Storage (
name_nice = T ( " Guided Tour Functionality " ) ,
module_type = None ,
) ) ,
( " translate " , Storage (
name_nice = T ( " Translation Functionality " ) ,
#description = "Selective translation of strings based on module.",
module_type = None ,
) ) ,
( " gis " , Storage (
name_nice = T ( " Map " ) ,
#description = "Situation Awareness & Geospatial Analysis",
restricted = True ,
module_type = 6 , # 6th item in the menu
) ) ,
( " pr " , Storage (
name_nice = T ( " Person Registry " ) ,
#description = "Central point to record details on People",
restricted = True ,
access = " |1| " , # Only Administrators can see this module in the default menu (access to controller is possible to all still)
2017-09-16 10:51:10 +02:00
module_type = 9
2017-09-10 21:38:09 +02:00
) ) ,
( " org " , Storage (
name_nice = T ( " Organizations " ) ,
#description = 'Lists "who is doing what & where". Allows relief agencies to coordinate their activities',
restricted = True ,
module_type = 1
) ) ,
# All modules below here should be possible to disable safely
( " hrm " , Storage (
name_nice = T ( " Staff " ) ,
#description = "Human Resources Management",
restricted = True ,
module_type = 2 ,
) ) ,
( " vol " , Storage (
name_nice = T ( " Volunteers " ) ,
#description = "Human Resources Management",
restricted = True ,
module_type = 2 ,
) ) ,
( " cms " , Storage (
name_nice = T ( " Content Management " ) ,
#description = "Content Management System",
restricted = True ,
2017-09-16 10:51:10 +02:00
module_type = 9 ,
2017-09-10 21:38:09 +02:00
) ) ,
( " doc " , Storage (
name_nice = T ( " Documents " ) ,
#description = "A library of digital resources, such as photos, documents and reports",
restricted = True ,
2017-09-16 10:51:10 +02:00
module_type = 9 ,
2017-09-10 21:38:09 +02:00
) ) ,
( " msg " , Storage (
name_nice = T ( " Messaging " ) ,
#description = "Sends & Receives Alerts via Email & SMS",
restricted = True ,
# The user-visible functionality of this module isn't normally required. Rather it's main purpose is to be accessed from other modules.
module_type = None ,
) ) ,
( " supply " , Storage (
name_nice = T ( " Supply Chain Management " ) ,
#description = "Used within Inventory Management, Request Management and Asset Management",
restricted = True ,
module_type = None , # Not displayed
) ) ,
( " inv " , Storage (
name_nice = T ( " Warehouses " ) ,
#description = "Receiving and Sending Items",
restricted = True ,
module_type = 4
) ) ,
#("proc", Storage(
# name_nice = T("Procurement"),
# #description = "Ordering & Purchasing of Goods & Services",
# restricted = True,
# module_type = 10
# )),
( " asset " , Storage (
name_nice = T ( " Assets " ) ,
#description = "Recording and Assigning Assets",
restricted = True ,
module_type = 5 ,
) ) ,
# Vehicle depends on Assets
( " vehicle " , Storage (
name_nice = T ( " Vehicles " ) ,
#description = "Manage Vehicles",
restricted = True ,
2017-09-16 10:51:10 +02:00
module_type = 9 ,
2017-09-10 21:38:09 +02:00
) ) ,
( " req " , Storage (
name_nice = T ( " Requests " ) ,
#description = "Manage requests for supplies, assets, staff or other resources. Matches against Inventories where supplies are requested.",
restricted = True ,
2017-09-16 10:51:10 +02:00
module_type = 9 ,
2017-09-10 21:38:09 +02:00
) ) ,
( " project " , Storage (
name_nice = T ( " Projects " ) ,
#description = "Tracking of Projects, Activities and Tasks",
restricted = True ,
module_type = 2
) ) ,
2017-10-08 13:33:23 +02:00
#("survey", Storage(
# name_nice = T("Surveys"),
# #description = "Create, enter, and manage surveys.",
# restricted = True,
# module_type = 5,
#)),
2017-09-27 15:28:19 +02:00
( " dc " , Storage (
2019-12-20 17:53:39 +01:00
name_nice = T ( " Assessments " ) ,
2017-09-27 15:28:19 +02:00
#description = "Data collection tool",
restricted = True ,
2019-12-20 17:53:39 +01:00
module_type = 5
2017-09-27 15:28:19 +02:00
) ) ,
2017-09-10 21:38:09 +02:00
( " cr " , Storage (
name_nice = T ( " Shelters " ) ,
#description = "Tracks the location, capacity and breakdown of victims in Shelters",
restricted = True ,
2017-09-16 10:51:10 +02:00
module_type = 9
2017-09-10 21:38:09 +02:00
) ) ,
( " hms " , Storage (
name_nice = T ( " Hospitals " ) ,
#description = "Helps to monitor status of hospitals",
restricted = True ,
2017-09-16 10:51:10 +02:00
module_type = 9
2017-09-10 21:38:09 +02:00
) ) ,
#("disease", Storage(
# name_nice = T("Disease Tracking"),
# #description = "Helps to track cases and trace contacts in disease outbreaks",
# restricted = True,
# module_type = 10
#)),
2019-12-20 17:53:39 +01:00
#("br", Storage(
# name_nice = T("Beneficiary Registry"),
# #description = "Beneficiary Registry and Case Management",
# restricted = True,
# module_type = 10,
#)),
2017-09-10 21:38:09 +02:00
( " dvr " , Storage (
2019-12-20 17:53:39 +01:00
name_nice = T ( " Disaster Victim Registry " ) ,
#description = "Allow affected individuals & households to register to receive compensation and distributions",
restricted = True ,
module_type = 10 ,
2017-09-10 21:38:09 +02:00
) ) ,
( " event " , Storage (
name_nice = T ( " Events " ) ,
#description = "Activate Events (e.g. from Scenario templates) for allocation of appropriate Resources (Human, Assets & Facilities).",
restricted = True ,
module_type = 10 ,
) ) ,
( " transport " , Storage (
2019-12-20 17:53:39 +01:00
name_nice = T ( " Transport " ) ,
restricted = True ,
module_type = 10 ,
2017-09-10 21:38:09 +02:00
) ) ,
( " stats " , Storage (
name_nice = T ( " Statistics " ) ,
#description = "Manages statistics",
restricted = True ,
module_type = None ,
) ) ,
( " member " , Storage (
2019-12-20 17:53:39 +01:00
name_nice = T ( " Members " ) ,
#description = "Membership Management System",
restricted = True ,
module_type = 10 ,
2017-09-10 21:38:09 +02:00
) ) ,
( " budget " , Storage (
name_nice = T ( " Budgeting Module " ) ,
#description = "Allows a Budget to be drawn up",
restricted = True ,
module_type = 10
) ) ,
2017-09-16 10:51:10 +02:00
( " deploy " , Storage (
name_nice = T ( " Deployments " ) ,
#description = "Manage Deployments",
restricted = True ,
module_type = 10 ,
) ) ,
2017-09-10 21:38:09 +02:00
# Deprecated: Replaced by event
#("irs", Storage(
# name_nice = T("Incidents"),
# #description = "Incident Reporting System",
# restricted = True,
# module_type = 10
#)),
2017-09-16 10:51:10 +02:00
( " dvi " , Storage (
name_nice = T ( " Disaster Victim Identification " ) ,
#description = "Disaster Victim Identification",
restricted = True ,
module_type = 10 ,
#access = "|DVI|", # Only users with the DVI role can see this module in the default menu & access the controller
) ) ,
( " edu " , Storage (
name_nice = T ( " Schools " ) ,
#description = "Helps to monitor status of schools",
restricted = True ,
module_type = 10
) ) ,
( " mpr " , Storage (
name_nice = T ( " Missing Person Registry " ) ,
#description = "Helps to report and search for missing persons",
restricted = True ,
module_type = 10 ,
) ) ,
2020-10-23 19:47:36 +02:00
# https://github.com/sahana/eden/issues/1562
#("vulnerability", Storage(
# name_nice = T("Vulnerability"),
# #description = "Manages vulnerability indicators",
# restricted = True,
# module_type = 10,
#)),
2017-09-16 10:51:10 +02:00
( " fire " , Storage (
2019-12-20 17:53:39 +01:00
name_nice = T ( " Fire Stations " ) ,
2017-09-16 10:51:10 +02:00
#description = "Fire Station Management",
restricted = True ,
module_type = 1 ,
) ) ,
( " water " , Storage (
name_nice = T ( " Water " ) ,
#description = "Flood Gauges show water levels in various parts of the country",
restricted = True ,
module_type = 10
) ) ,
( " patient " , Storage (
name_nice = T ( " Patient Tracking " ) ,
#description = "Tracking of Patients",
restricted = True ,
module_type = 10
) ) ,
( " po " , Storage (
name_nice = T ( " Population Outreach " ) ,
#description = "Population Outreach",
restricted = True ,
module_type = 10
) ) ,
( " security " , Storage (
name_nice = T ( " Security " ) ,
#description = "Security Management System",
restricted = True ,
module_type = 10 ,
) ) ,
2017-09-10 21:38:09 +02:00
# These are specialist modules
2017-09-16 10:51:10 +02:00
( " cap " , Storage (
name_nice = T ( " CAP " ) ,
#description = "Create & broadcast CAP alerts",
restricted = True ,
module_type = 10 ,
) ) ,
2017-09-10 21:38:09 +02:00
# Requires RPy2 & PostgreSQL
#("climate", Storage(
# name_nice = T("Climate"),
# #description = "Climate data portal",
# restricted = True,
# module_type = 10,
#)),
2017-09-16 10:51:10 +02:00
( " delphi " , Storage (
name_nice = T ( " Delphi Decision Maker " ) ,
#description = "Supports the decision making of large groups of Crisis Management Experts by helping the groups create ranked list.",
2017-09-21 17:07:49 +02:00
restricted = True ,
2017-09-16 10:51:10 +02:00
module_type = 10 ,
) ) ,
2017-09-10 21:38:09 +02:00
# @ToDo: Port these Assessments to the Survey module
#("building", Storage(
# name_nice = T("Building Assessments"),
# #description = "Building Safety Assessments",
# restricted = True,
# module_type = 10,
#)),
# Deprecated by Surveys module
# - depends on CR, IRS & Impact
#("assess", Storage(
# name_nice = T("Assessments"),
# #description = "Rapid Assessments & Flexible Impact Assessments",
# restricted = True,
# module_type = 10,
#)),
2017-09-28 17:55:45 +02:00
#("impact", Storage(
# name_nice = T("Impacts"),
# #description = "Used by Assess",
# restricted = True,
# module_type = None,
#)),
2017-09-23 10:45:12 +02:00
#("ocr", Storage(
# name_nice = T("Optical Character Recognition"),
# #description = "Optical Character Recognition for reading the scanned handwritten paper forms.",
# restricted = False,
# module_type = None,
#)),
2017-09-16 10:51:10 +02:00
( " work " , Storage (
name_nice = T ( " Jobs " ) ,
#description = "Simple Volunteer Jobs Management",
restricted = False ,
module_type = None ,
) ) ,
2017-09-10 21:38:09 +02:00
] )
# END =========================================================================