├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── currencies ├── __init__.py ├── admin.py ├── conf.py ├── context_processors.py ├── fixtures │ └── currencies_test.json ├── locale │ ├── el │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── es │ │ └── LC_MESSAGES │ │ │ └── django.po │ └── ru │ │ └── LC_MESSAGES │ │ └── django.po ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── _currencyhandler.py │ │ ├── _currencyiso.py │ │ ├── _currencyiso.xml │ │ ├── _openexchangerates.json │ │ ├── _openexchangerates.py │ │ ├── _openexchangerates_client.py │ │ ├── _yahoofinance.json │ │ ├── _yahoofinance.py │ │ ├── currencies.json │ │ ├── currencies.py │ │ └── updatecurrencies.py ├── managers.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_alter_model.py │ ├── 0003_currency_info.py │ ├── 0004_code_primary.py │ ├── 0005_alter_help_text.py │ ├── 0006_increase_name_max_length.py │ └── __init__.py ├── models.py ├── templates │ └── currencies │ │ └── navbar │ │ └── currency-chooser-bs3fa.html ├── templatetags │ ├── __init__.py │ └── currency.py ├── tests │ ├── __init__.py │ ├── openexchangerates_client_testing.txt │ ├── oxr_USD.json │ ├── templates │ │ ├── context_processor.html │ │ ├── context_tag.html │ │ └── index.html │ ├── test_urls.py │ ├── tests.py │ ├── tests_management.py │ └── tests_openexchangerates_client.py ├── urls.py ├── utils.py └── views.py ├── docs ├── Makefile ├── conf.py ├── index.rst └── make.bat ├── runtests.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/README.rst -------------------------------------------------------------------------------- /currencies/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.11.0' 2 | -------------------------------------------------------------------------------- /currencies/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/admin.py -------------------------------------------------------------------------------- /currencies/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/conf.py -------------------------------------------------------------------------------- /currencies/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/context_processors.py -------------------------------------------------------------------------------- /currencies/fixtures/currencies_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/fixtures/currencies_test.json -------------------------------------------------------------------------------- /currencies/locale/el/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/locale/el/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /currencies/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /currencies/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /currencies/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /currencies/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /currencies/management/commands/_currencyhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/management/commands/_currencyhandler.py -------------------------------------------------------------------------------- /currencies/management/commands/_currencyiso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/management/commands/_currencyiso.py -------------------------------------------------------------------------------- /currencies/management/commands/_currencyiso.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/management/commands/_currencyiso.xml -------------------------------------------------------------------------------- /currencies/management/commands/_openexchangerates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/management/commands/_openexchangerates.json -------------------------------------------------------------------------------- /currencies/management/commands/_openexchangerates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/management/commands/_openexchangerates.py -------------------------------------------------------------------------------- /currencies/management/commands/_openexchangerates_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/management/commands/_openexchangerates_client.py -------------------------------------------------------------------------------- /currencies/management/commands/_yahoofinance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/management/commands/_yahoofinance.json -------------------------------------------------------------------------------- /currencies/management/commands/_yahoofinance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/management/commands/_yahoofinance.py -------------------------------------------------------------------------------- /currencies/management/commands/currencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/management/commands/currencies.json -------------------------------------------------------------------------------- /currencies/management/commands/currencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/management/commands/currencies.py -------------------------------------------------------------------------------- /currencies/management/commands/updatecurrencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/management/commands/updatecurrencies.py -------------------------------------------------------------------------------- /currencies/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/managers.py -------------------------------------------------------------------------------- /currencies/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/migrations/0001_initial.py -------------------------------------------------------------------------------- /currencies/migrations/0002_alter_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/migrations/0002_alter_model.py -------------------------------------------------------------------------------- /currencies/migrations/0003_currency_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/migrations/0003_currency_info.py -------------------------------------------------------------------------------- /currencies/migrations/0004_code_primary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/migrations/0004_code_primary.py -------------------------------------------------------------------------------- /currencies/migrations/0005_alter_help_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/migrations/0005_alter_help_text.py -------------------------------------------------------------------------------- /currencies/migrations/0006_increase_name_max_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/migrations/0006_increase_name_max_length.py -------------------------------------------------------------------------------- /currencies/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /currencies/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/models.py -------------------------------------------------------------------------------- /currencies/templates/currencies/navbar/currency-chooser-bs3fa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/templates/currencies/navbar/currency-chooser-bs3fa.html -------------------------------------------------------------------------------- /currencies/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /currencies/templatetags/currency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/templatetags/currency.py -------------------------------------------------------------------------------- /currencies/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /currencies/tests/openexchangerates_client_testing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/tests/openexchangerates_client_testing.txt -------------------------------------------------------------------------------- /currencies/tests/oxr_USD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/tests/oxr_USD.json -------------------------------------------------------------------------------- /currencies/tests/templates/context_processor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/tests/templates/context_processor.html -------------------------------------------------------------------------------- /currencies/tests/templates/context_tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/tests/templates/context_tag.html -------------------------------------------------------------------------------- /currencies/tests/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/tests/templates/index.html -------------------------------------------------------------------------------- /currencies/tests/test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/tests/test_urls.py -------------------------------------------------------------------------------- /currencies/tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/tests/tests.py -------------------------------------------------------------------------------- /currencies/tests/tests_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/tests/tests_management.py -------------------------------------------------------------------------------- /currencies/tests/tests_openexchangerates_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/tests/tests_openexchangerates_client.py -------------------------------------------------------------------------------- /currencies/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/urls.py -------------------------------------------------------------------------------- /currencies/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/utils.py -------------------------------------------------------------------------------- /currencies/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/currencies/views.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/docs/make.bat -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | # create "py2.py3-none-any.whl" package 3 | universal = 1 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panosl/django-currencies/HEAD/setup.py --------------------------------------------------------------------------------