Files @ 8bb65a9a39e9
Branch filter:

Location: website/www/manage.py - annotation

brett
donate: Refresh the page throughout.

* Put more common donation methods higher up.
* Delist Flattr.
* Update the list of foreign currency accounts we hold.
* Update the section about donating to member projects.
* Wordsmith throughout, primarily to avoid accounting jargon and
abbreviations, and use fewer exclamation marks.
#!/usr/bin/env python

import os
import sys

if __name__ == "__main__":
    www_path = os.path.abspath(os.path.dirname(sys.argv[0]))
    if www_path not in sys.path:
        sys.path.append(www_path)

    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "conservancy.settings")

    from django.core.management import execute_from_command_line

    execute_from_command_line(sys.argv)