diff --git a/currencyproj/currency.txt b/currencyproj/currency.txt deleted file mode 100644 index 7c0e0f11..00000000 --- a/currencyproj/currency.txt +++ /dev/null @@ -1 +0,0 @@ -101010 diff --git a/currencyproj/currencyproj/__init__.py b/currencyproj/currencyproj/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/currencyproj/currencyproj/__pycache__/__init__.cpython-36.pyc b/currencyproj/currencyproj/__pycache__/__init__.cpython-36.pyc deleted file mode 100644 index 41072de4..00000000 Binary files a/currencyproj/currencyproj/__pycache__/__init__.cpython-36.pyc and /dev/null differ diff --git a/currencyproj/currencyproj/__pycache__/settings.cpython-36.pyc b/currencyproj/currencyproj/__pycache__/settings.cpython-36.pyc deleted file mode 100644 index e46fef6f..00000000 Binary files a/currencyproj/currencyproj/__pycache__/settings.cpython-36.pyc and /dev/null differ diff --git a/currencyproj/currencyproj/__pycache__/urls.cpython-36.pyc b/currencyproj/currencyproj/__pycache__/urls.cpython-36.pyc deleted file mode 100644 index 42a37e01..00000000 Binary files a/currencyproj/currencyproj/__pycache__/urls.cpython-36.pyc and /dev/null differ diff --git a/currencyproj/currencyproj/__pycache__/wsgi.cpython-36.pyc b/currencyproj/currencyproj/__pycache__/wsgi.cpython-36.pyc deleted file mode 100644 index 67addeed..00000000 Binary files a/currencyproj/currencyproj/__pycache__/wsgi.cpython-36.pyc and /dev/null differ diff --git a/currencyproj/currencyproj/asgi.py b/currencyproj/currencyproj/asgi.py deleted file mode 100644 index 41f19f93..00000000 --- a/currencyproj/currencyproj/asgi.py +++ /dev/null @@ -1,16 +0,0 @@ -""" -ASGI config for currencyproj project. - -It exposes the ASGI callable as a module-level variable named ``application``. - -For more information on this file, see -https://docs.djangoproject.com/en/3.1/howto/deployment/asgi/ -""" - -import os - -from django.core.asgi import get_asgi_application - -os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'currencyproj.settings') - -application = get_asgi_application() diff --git a/currencyproj/currencyproj/settings.py b/currencyproj/currencyproj/settings.py deleted file mode 100644 index e7edbfab..00000000 --- a/currencyproj/currencyproj/settings.py +++ /dev/null @@ -1,125 +0,0 @@ -""" -Django settings for currencyproj project. - -Generated by 'django-admin startproject' using Django 3.1.6. - -For more information on this file, see -https://docs.djangoproject.com/en/3.1/topics/settings/ - -For the full list of settings and their values, see -https://docs.djangoproject.com/en/3.1/ref/settings/ -""" - -from pathlib import Path -import os - -# Build paths inside the project like this: BASE_DIR / 'subdir'. -BASE_DIR = Path(__file__).resolve().parent.parent - - -# Quick-start development settings - unsuitable for production -# See https://docs.djangoproject.com/en/3.1/howto/deployment/checklist/ - -# SECURITY WARNING: keep the secret key used in production secret! -SECRET_KEY = '%j9h3c5ukt2mom45uiuy_paz+h1*qmqns@)-b0loxk_^bj%eg5' - -# SECURITY WARNING: don't run with debug turned on in production! -DEBUG = True - -ALLOWED_HOSTS = [] - - -# Application definition - -INSTALLED_APPS = [ - 'django.contrib.admin', - 'django.contrib.auth', - 'django.contrib.contenttypes', - 'django.contrib.sessions', - 'django.contrib.messages', - 'django.contrib.staticfiles', - 'home', -] - -MIDDLEWARE = [ - 'django.middleware.security.SecurityMiddleware', - 'django.contrib.sessions.middleware.SessionMiddleware', - 'django.middleware.common.CommonMiddleware', - 'django.middleware.csrf.CsrfViewMiddleware', - 'django.contrib.auth.middleware.AuthenticationMiddleware', - 'django.contrib.messages.middleware.MessageMiddleware', - 'django.middleware.clickjacking.XFrameOptionsMiddleware', -] - -ROOT_URLCONF = 'currencyproj.urls' - -TEMPLATES = [ - { - 'BACKEND': 'django.template.backends.django.DjangoTemplates', - 'DIRS': [], - 'APP_DIRS': True, - 'OPTIONS': { - 'context_processors': [ - 'django.template.context_processors.debug', - 'django.template.context_processors.request', - 'django.contrib.auth.context_processors.auth', - 'django.contrib.messages.context_processors.messages', - ], - }, - }, -] - -WSGI_APPLICATION = 'currencyproj.wsgi.application' - - -# Database -# https://docs.djangoproject.com/en/3.1/ref/settings/#databases - -DATABASES = { - 'default': { - 'ENGINE': 'django.db.backends.sqlite3', - 'NAME': BASE_DIR / 'db.sqlite3', - } -} - - -# Password validation -# https://docs.djangoproject.com/en/3.1/ref/settings/#auth-password-validators - -AUTH_PASSWORD_VALIDATORS = [ - { - 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', - }, - { - 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', - }, - { - 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', - }, - { - 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', - }, -] - - -# Internationalization -# https://docs.djangoproject.com/en/3.1/topics/i18n/ - -LANGUAGE_CODE = 'en-us' - -TIME_ZONE = 'UTC' - -USE_I18N = True - -USE_L10N = True - -USE_TZ = True - - -# Static files (CSS, JavaScript, Images) -# https://docs.djangoproject.com/en/3.1/howto/static-files/ - -STATIC_URL = '/static/' -STATICFILES_DIRS = [ - os.path.join(BASE_DIR, "static"), - ] diff --git a/currencyproj/currencyproj/urls.py b/currencyproj/currencyproj/urls.py deleted file mode 100644 index 9cbd8bf1..00000000 --- a/currencyproj/currencyproj/urls.py +++ /dev/null @@ -1,16 +0,0 @@ - -from django.contrib import admin -from django.urls import path -from home.models import upload_video,upload_image -# from home.views import upload_content, imageUpload, videoUpload -from home.views import finallyUploadImage -from home.forms import UploadImage - -urlpatterns = [ - path('admin/', admin.site.urls), - # path('upload/',upload_content, name="upload"), - # path('upload_video/',videoUpload,name='upload_video'), - # path('upload_image/',imageUpload,name='upload_image'), - path('upload/',finallyUploadImage,name="Plsman") - -] diff --git a/currencyproj/currencyproj/wsgi.py b/currencyproj/currencyproj/wsgi.py deleted file mode 100644 index 0f54b109..00000000 --- a/currencyproj/currencyproj/wsgi.py +++ /dev/null @@ -1,16 +0,0 @@ -""" -WSGI config for currencyproj project. - -It exposes the WSGI callable as a module-level variable named ``application``. - -For more information on this file, see -https://docs.djangoproject.com/en/3.1/howto/deployment/wsgi/ -""" - -import os - -from django.core.wsgi import get_wsgi_application - -os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'currencyproj.settings') - -application = get_wsgi_application() diff --git a/currencyproj/db.sqlite3 b/currencyproj/db.sqlite3 deleted file mode 100644 index 26e51092..00000000 Binary files a/currencyproj/db.sqlite3 and /dev/null differ diff --git a/currencyproj/home/__init__.py b/currencyproj/home/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/currencyproj/home/__pycache__/__init__.cpython-36.pyc b/currencyproj/home/__pycache__/__init__.cpython-36.pyc deleted file mode 100644 index ebe51b8e..00000000 Binary files a/currencyproj/home/__pycache__/__init__.cpython-36.pyc and /dev/null differ diff --git a/currencyproj/home/__pycache__/admin.cpython-36.pyc b/currencyproj/home/__pycache__/admin.cpython-36.pyc deleted file mode 100644 index 57f54fce..00000000 Binary files a/currencyproj/home/__pycache__/admin.cpython-36.pyc and /dev/null differ diff --git a/currencyproj/home/__pycache__/forms.cpython-36.pyc b/currencyproj/home/__pycache__/forms.cpython-36.pyc deleted file mode 100644 index 4739c48a..00000000 Binary files a/currencyproj/home/__pycache__/forms.cpython-36.pyc and /dev/null differ diff --git a/currencyproj/home/__pycache__/models.cpython-36.pyc b/currencyproj/home/__pycache__/models.cpython-36.pyc deleted file mode 100644 index efac7289..00000000 Binary files a/currencyproj/home/__pycache__/models.cpython-36.pyc and /dev/null differ diff --git a/currencyproj/home/__pycache__/views.cpython-36.pyc b/currencyproj/home/__pycache__/views.cpython-36.pyc deleted file mode 100644 index 8e393b6a..00000000 Binary files a/currencyproj/home/__pycache__/views.cpython-36.pyc and /dev/null differ diff --git a/currencyproj/home/admin.py b/currencyproj/home/admin.py deleted file mode 100644 index cc1da641..00000000 --- a/currencyproj/home/admin.py +++ /dev/null @@ -1,5 +0,0 @@ -from django.contrib import admin -from .models import upload_image, upload_video - -admin.site.register(upload_image) -admin.site.register(upload_video) diff --git a/currencyproj/home/apps.py b/currencyproj/home/apps.py deleted file mode 100644 index 90dc7137..00000000 --- a/currencyproj/home/apps.py +++ /dev/null @@ -1,5 +0,0 @@ -from django.apps import AppConfig - - -class HomeConfig(AppConfig): - name = 'home' diff --git a/currencyproj/home/forms.py b/currencyproj/home/forms.py deleted file mode 100644 index fccd5a55..00000000 --- a/currencyproj/home/forms.py +++ /dev/null @@ -1,9 +0,0 @@ -from django import forms -from .models import upload_image - -class UploadImage(forms.ModelForm): - class Meta: - model = upload_image - fields = [ - 'image' - ] diff --git a/currencyproj/home/migrations/0001_initial.py b/currencyproj/home/migrations/0001_initial.py deleted file mode 100644 index 70f80d6e..00000000 --- a/currencyproj/home/migrations/0001_initial.py +++ /dev/null @@ -1,22 +0,0 @@ -# Generated by Django 3.1.6 on 2021-02-05 00:24 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - initial = True - - dependencies = [ - ] - - operations = [ - migrations.CreateModel( - name='upload', - fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('image', models.FileField(upload_to='images/')), - ('video', models.FileField(upload_to='videos/')), - ], - ), - ] diff --git a/currencyproj/home/migrations/0002_auto_20210205_0037.py b/currencyproj/home/migrations/0002_auto_20210205_0037.py deleted file mode 100644 index 08f2c0b4..00000000 --- a/currencyproj/home/migrations/0002_auto_20210205_0037.py +++ /dev/null @@ -1,30 +0,0 @@ -# Generated by Django 3.1.6 on 2021-02-05 00:37 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0001_initial'), - ] - - operations = [ - migrations.CreateModel( - name='upload_image', - fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('image', models.FileField(upload_to='images/')), - ], - ), - migrations.CreateModel( - name='upload_video', - fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('video', models.FileField(upload_to='videos/')), - ], - ), - migrations.DeleteModel( - name='upload', - ), - ] diff --git a/currencyproj/home/migrations/0003_auto_20210205_1213.py b/currencyproj/home/migrations/0003_auto_20210205_1213.py deleted file mode 100644 index ff4ffb63..00000000 --- a/currencyproj/home/migrations/0003_auto_20210205_1213.py +++ /dev/null @@ -1,23 +0,0 @@ -# Generated by Django 3.1.6 on 2021-02-05 12:13 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0002_auto_20210205_0037'), - ] - - operations = [ - migrations.AlterField( - model_name='upload_image', - name='image', - field=models.FileField(upload_to='static/images/'), - ), - migrations.AlterField( - model_name='upload_video', - name='video', - field=models.FileField(upload_to='static/videos/'), - ), - ] diff --git a/currencyproj/home/migrations/0004_auto_20210205_1216.py b/currencyproj/home/migrations/0004_auto_20210205_1216.py deleted file mode 100644 index 2a2e7bb2..00000000 --- a/currencyproj/home/migrations/0004_auto_20210205_1216.py +++ /dev/null @@ -1,23 +0,0 @@ -# Generated by Django 3.1.6 on 2021-02-05 12:16 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('home', '0003_auto_20210205_1213'), - ] - - operations = [ - migrations.AlterField( - model_name='upload_image', - name='image', - field=models.FileField(upload_to='images/'), - ), - migrations.AlterField( - model_name='upload_video', - name='video', - field=models.FileField(upload_to='videos/'), - ), - ] diff --git a/currencyproj/home/migrations/__init__.py b/currencyproj/home/migrations/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/currencyproj/home/migrations/__pycache__/0001_initial.cpython-36.pyc b/currencyproj/home/migrations/__pycache__/0001_initial.cpython-36.pyc deleted file mode 100644 index a0c75d0a..00000000 Binary files a/currencyproj/home/migrations/__pycache__/0001_initial.cpython-36.pyc and /dev/null differ diff --git a/currencyproj/home/migrations/__pycache__/0002_auto_20210205_0037.cpython-36.pyc b/currencyproj/home/migrations/__pycache__/0002_auto_20210205_0037.cpython-36.pyc deleted file mode 100644 index cbf81199..00000000 Binary files a/currencyproj/home/migrations/__pycache__/0002_auto_20210205_0037.cpython-36.pyc and /dev/null differ diff --git a/currencyproj/home/migrations/__pycache__/0003_auto_20210205_1213.cpython-36.pyc b/currencyproj/home/migrations/__pycache__/0003_auto_20210205_1213.cpython-36.pyc deleted file mode 100644 index 766e1a3d..00000000 Binary files a/currencyproj/home/migrations/__pycache__/0003_auto_20210205_1213.cpython-36.pyc and /dev/null differ diff --git a/currencyproj/home/migrations/__pycache__/0004_auto_20210205_1216.cpython-36.pyc b/currencyproj/home/migrations/__pycache__/0004_auto_20210205_1216.cpython-36.pyc deleted file mode 100644 index ced8b274..00000000 Binary files a/currencyproj/home/migrations/__pycache__/0004_auto_20210205_1216.cpython-36.pyc and /dev/null differ diff --git a/currencyproj/home/migrations/__pycache__/__init__.cpython-36.pyc b/currencyproj/home/migrations/__pycache__/__init__.cpython-36.pyc deleted file mode 100644 index bb31f620..00000000 Binary files a/currencyproj/home/migrations/__pycache__/__init__.cpython-36.pyc and /dev/null differ diff --git a/currencyproj/home/models.py b/currencyproj/home/models.py deleted file mode 100644 index e1ac3f69..00000000 --- a/currencyproj/home/models.py +++ /dev/null @@ -1,8 +0,0 @@ -from django.db import models - -class upload_image(models.Model): - # check for file extensions - image = models.FileField(upload_to="images/") - -class upload_video(models.Model): - video = models.FileField(upload_to="videos/") diff --git a/currencyproj/home/templates/details.html b/currencyproj/home/templates/details.html deleted file mode 100644 index 3b65e9d8..00000000 --- a/currencyproj/home/templates/details.html +++ /dev/null @@ -1,13 +0,0 @@ -{% extends 'uploadImage.html' %} -{% block replace %} -
-

Welcome to DataFlair
Hello {{ user_pr.fname }}

-

its an awesome profile picture

-
- {% load static %} - -

- {{ user_pr.display_picture.url }}
- You have learned some awesome technologies like {{ user_pr.technologies }}

-
-{% endblock %} diff --git a/currencyproj/home/templates/error.html b/currencyproj/home/templates/error.html deleted file mode 100644 index 1bc13d58..00000000 --- a/currencyproj/home/templates/error.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - -

404

- - diff --git a/currencyproj/home/templates/index.html b/currencyproj/home/templates/index.html deleted file mode 100644 index f5e1312e..00000000 --- a/currencyproj/home/templates/index.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - -
{% csrf_token %} - - - - - -
- - diff --git a/currencyproj/home/templates/uploadImage.html b/currencyproj/home/templates/uploadImage.html deleted file mode 100644 index e6c104ea..00000000 --- a/currencyproj/home/templates/uploadImage.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - Make Profile - - - - -
-
-

DataFlair Django File Uploading

- {% block replace %} -

To make a user profile and upload the files fill this form

-
-
- {% csrf_token %} - - {{ form.as_table }} -
- -
-
- {% endblock %} - - diff --git a/currencyproj/home/templates/uploadVideo.html b/currencyproj/home/templates/uploadVideo.html deleted file mode 100644 index aef62935..00000000 --- a/currencyproj/home/templates/uploadVideo.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - - test2 - - -

test2

- - diff --git a/currencyproj/home/tests.py b/currencyproj/home/tests.py deleted file mode 100644 index 7ce503c2..00000000 --- a/currencyproj/home/tests.py +++ /dev/null @@ -1,3 +0,0 @@ -from django.test import TestCase - -# Create your tests here. diff --git a/currencyproj/home/views.py b/currencyproj/home/views.py deleted file mode 100644 index a150f364..00000000 --- a/currencyproj/home/views.py +++ /dev/null @@ -1,67 +0,0 @@ -# from django.shortcuts import render, redirect -# import os -# from .models import upload_video,upload_image -# -# def imageUpload(request): -# if request.method == "GET": -# return render(request, "uploadImage.html") -# elif request.method == "POST": -# image = request.POST["image"] -# # add the id of the user, after you add in users -# savingImage = open(f"../images/{image}","w") -# for i in image: -# savingImage.write(i) -# savingImage.close() -# return redirect(f"/images/{image}") -# else: -# return -# -# def videoUpload(request): -# if request.method == "GET": -# return render(request, "uploadVideo.html") -# elif request.method == "POST": -# video = request.POST["video"] -# # add the id of the user, after you add in users -# return upload_video(video) -# else: -# return -# -# # these functions do the same thing, but i cant merge them in one, because i cant add parameters(because of request) -# -# def upload_content(request): -# if request.method == "GET": -# return render(request, "index.html") -# elif request.method == "POST": -# choice = request.POST["choices"] -# if choice == "image": -# return redirect("/upload_image/") -# elif choice == "video": -# return redirect("/upload_video/") -# else: -# return -# else: -# return -# # in conclusion - im genious, good job boyan lmao - - -from django.shortcuts import render -from .forms import UploadImage -from .models import upload_image - -IMAGE_FILE_TYPES = ['png', 'jpg', 'jpeg'] - -def finallyUploadImage(request): - form = UploadImage() - if request.method == 'POST': - form = UploadImage(request.POST, request.FILES) - if form.is_valid(): - user_pr = form.save(commit=False) - user_pr.image = request.FILES['image'] - file_type = user_pr.image.url.split('.')[-1] - file_type = file_type.lower() - if file_type not in IMAGE_FILE_TYPES: - return render(request, 'error.html') - user_pr.save() - return render(request, 'details.html', {'user_pr': user_pr}) - context = {"form": form,} - return render(request, 'uploadImage.html', context) diff --git a/currencyproj/images/WIN_20171203_11_38_21_Pro.jpg b/currencyproj/images/WIN_20171203_11_38_21_Pro.jpg deleted file mode 100644 index 312e9737..00000000 Binary files a/currencyproj/images/WIN_20171203_11_38_21_Pro.jpg and /dev/null differ diff --git a/currencyproj/images/proxy.duckduckgo.com.jpg b/currencyproj/images/proxy.duckduckgo.com.jpg deleted file mode 100644 index 22f74a41..00000000 Binary files a/currencyproj/images/proxy.duckduckgo.com.jpg and /dev/null differ diff --git a/currencyproj/images/proxy.duckduckgo.com.png b/currencyproj/images/proxy.duckduckgo.com.png deleted file mode 100644 index 05cf7bb6..00000000 Binary files a/currencyproj/images/proxy.duckduckgo.com.png and /dev/null differ diff --git a/currencyproj/images/proxy.duckduckgo.com_CM5TyHm.png b/currencyproj/images/proxy.duckduckgo.com_CM5TyHm.png deleted file mode 100644 index 05cf7bb6..00000000 Binary files a/currencyproj/images/proxy.duckduckgo.com_CM5TyHm.png and /dev/null differ diff --git a/currencyproj/images/proxy.duckduckgo.com_EMLFjoc.png b/currencyproj/images/proxy.duckduckgo.com_EMLFjoc.png deleted file mode 100644 index 05cf7bb6..00000000 Binary files a/currencyproj/images/proxy.duckduckgo.com_EMLFjoc.png and /dev/null differ diff --git a/currencyproj/images/proxy.duckduckgo.com_UsCE4m2.jpg b/currencyproj/images/proxy.duckduckgo.com_UsCE4m2.jpg deleted file mode 100644 index 22f74a41..00000000 Binary files a/currencyproj/images/proxy.duckduckgo.com_UsCE4m2.jpg and /dev/null differ diff --git a/currencyproj/images/proxy.duckduckgo.com_WqV3PIs.jpg b/currencyproj/images/proxy.duckduckgo.com_WqV3PIs.jpg deleted file mode 100644 index 22f74a41..00000000 Binary files a/currencyproj/images/proxy.duckduckgo.com_WqV3PIs.jpg and /dev/null differ diff --git a/currencyproj/images/proxy.duckduckgo.com_dR7TUYf.png b/currencyproj/images/proxy.duckduckgo.com_dR7TUYf.png deleted file mode 100644 index 05cf7bb6..00000000 Binary files a/currencyproj/images/proxy.duckduckgo.com_dR7TUYf.png and /dev/null differ diff --git a/currencyproj/images/proxy.duckduckgo.com_dmVqC3C.png b/currencyproj/images/proxy.duckduckgo.com_dmVqC3C.png deleted file mode 100644 index 05cf7bb6..00000000 Binary files a/currencyproj/images/proxy.duckduckgo.com_dmVqC3C.png and /dev/null differ diff --git a/currencyproj/images/proxy.duckduckgo.com_hEqsj47.jpg b/currencyproj/images/proxy.duckduckgo.com_hEqsj47.jpg deleted file mode 100644 index 22f74a41..00000000 Binary files a/currencyproj/images/proxy.duckduckgo.com_hEqsj47.jpg and /dev/null differ diff --git a/currencyproj/images/proxy.duckduckgo.com_jlaO7oa.jpg b/currencyproj/images/proxy.duckduckgo.com_jlaO7oa.jpg deleted file mode 100644 index 22f74a41..00000000 Binary files a/currencyproj/images/proxy.duckduckgo.com_jlaO7oa.jpg and /dev/null differ diff --git a/currencyproj/images/proxy.duckduckgo.com_wEukfAL.jpg b/currencyproj/images/proxy.duckduckgo.com_wEukfAL.jpg deleted file mode 100644 index 22f74a41..00000000 Binary files a/currencyproj/images/proxy.duckduckgo.com_wEukfAL.jpg and /dev/null differ diff --git a/currencyproj/manage.py b/currencyproj/manage.py deleted file mode 100644 index aa34add1..00000000 --- a/currencyproj/manage.py +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env python -"""Django's command-line utility for administrative tasks.""" -import os -import sys - - -def main(): - """Run administrative tasks.""" - os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'currencyproj.settings') - try: - from django.core.management import execute_from_command_line - except ImportError as exc: - raise ImportError( - "Couldn't import Django. Are you sure it's installed and " - "available on your PYTHONPATH environment variable? Did you " - "forget to activate a virtual environment?" - ) from exc - execute_from_command_line(sys.argv) - - -if __name__ == '__main__': - main() diff --git a/currencyproj/static/images/WIN_20171203_11_38_21_Pro.jpg b/currencyproj/static/images/WIN_20171203_11_38_21_Pro.jpg deleted file mode 100644 index 312e9737..00000000 Binary files a/currencyproj/static/images/WIN_20171203_11_38_21_Pro.jpg and /dev/null differ diff --git a/currencyproj/static/images/WIN_20171203_11_38_21_Pro_GnuWtID.jpg b/currencyproj/static/images/WIN_20171203_11_38_21_Pro_GnuWtID.jpg deleted file mode 100644 index 312e9737..00000000 Binary files a/currencyproj/static/images/WIN_20171203_11_38_21_Pro_GnuWtID.jpg and /dev/null differ diff --git a/currencyproj/static/images/WIN_20171203_11_38_21_Pro_Mypenc5.jpg b/currencyproj/static/images/WIN_20171203_11_38_21_Pro_Mypenc5.jpg deleted file mode 100644 index 312e9737..00000000 Binary files a/currencyproj/static/images/WIN_20171203_11_38_21_Pro_Mypenc5.jpg and /dev/null differ diff --git a/currencyproj/static/images/WIN_20171203_11_38_21_Pro_ZoyKCCJ.jpg b/currencyproj/static/images/WIN_20171203_11_38_21_Pro_ZoyKCCJ.jpg deleted file mode 100644 index 312e9737..00000000 Binary files a/currencyproj/static/images/WIN_20171203_11_38_21_Pro_ZoyKCCJ.jpg and /dev/null differ