├── README.md ├── app ├── app │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── exchange_app │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── manage.py ├── static │ ├── css │ │ └── style.css │ └── img │ │ └── world-curr.jpg └── templates │ ├── base.html │ └── exchange_app │ └── index.html └── requirements.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythontoday/django-exchange-app/HEAD/README.md -------------------------------------------------------------------------------- /app/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/app/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythontoday/django-exchange-app/HEAD/app/app/asgi.py -------------------------------------------------------------------------------- /app/app/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythontoday/django-exchange-app/HEAD/app/app/settings.py -------------------------------------------------------------------------------- /app/app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythontoday/django-exchange-app/HEAD/app/app/urls.py -------------------------------------------------------------------------------- /app/app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythontoday/django-exchange-app/HEAD/app/app/wsgi.py -------------------------------------------------------------------------------- /app/exchange_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/exchange_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythontoday/django-exchange-app/HEAD/app/exchange_app/admin.py -------------------------------------------------------------------------------- /app/exchange_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythontoday/django-exchange-app/HEAD/app/exchange_app/apps.py -------------------------------------------------------------------------------- /app/exchange_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/exchange_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythontoday/django-exchange-app/HEAD/app/exchange_app/models.py -------------------------------------------------------------------------------- /app/exchange_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythontoday/django-exchange-app/HEAD/app/exchange_app/tests.py -------------------------------------------------------------------------------- /app/exchange_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythontoday/django-exchange-app/HEAD/app/exchange_app/urls.py -------------------------------------------------------------------------------- /app/exchange_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythontoday/django-exchange-app/HEAD/app/exchange_app/views.py -------------------------------------------------------------------------------- /app/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythontoday/django-exchange-app/HEAD/app/manage.py -------------------------------------------------------------------------------- /app/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythontoday/django-exchange-app/HEAD/app/static/css/style.css -------------------------------------------------------------------------------- /app/static/img/world-curr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythontoday/django-exchange-app/HEAD/app/static/img/world-curr.jpg -------------------------------------------------------------------------------- /app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythontoday/django-exchange-app/HEAD/app/templates/base.html -------------------------------------------------------------------------------- /app/templates/exchange_app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythontoday/django-exchange-app/HEAD/app/templates/exchange_app/index.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Django==4.0.4 2 | requests==2.27.1 3 | --------------------------------------------------------------------------------