├── .gitattributes ├── .gitignore ├── LICENSE ├── PyQuotes ├── __init__.py ├── settings.py ├── tests │ └── test_index.py ├── urls.py └── wsgi.py ├── README.md ├── Screenshots ├── Create_Category.png ├── Create_Person.png ├── Create_Quote.png ├── Home.png ├── Persons.png ├── Quotes By Category.png ├── Quotes By Person.png └── Random.png ├── Web ├── __init__.py ├── admin.py ├── api_views.py ├── apps.py ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── manage.py ├── requirements.txt ├── templates ├── Web │ ├── category_form.html │ ├── person_form.html │ └── quote_form.html ├── index.html ├── master.html ├── other_master.html ├── persons.html ├── registration │ └── login.html └── static │ ├── css │ └── bootstrap.css │ └── js │ ├── bootstrap.bundle.min.js │ └── jquery.min.js └── tox.ini /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/LICENSE -------------------------------------------------------------------------------- /PyQuotes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PyQuotes/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/PyQuotes/settings.py -------------------------------------------------------------------------------- /PyQuotes/tests/test_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/PyQuotes/tests/test_index.py -------------------------------------------------------------------------------- /PyQuotes/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/PyQuotes/urls.py -------------------------------------------------------------------------------- /PyQuotes/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/PyQuotes/wsgi.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/Create_Category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/Screenshots/Create_Category.png -------------------------------------------------------------------------------- /Screenshots/Create_Person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/Screenshots/Create_Person.png -------------------------------------------------------------------------------- /Screenshots/Create_Quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/Screenshots/Create_Quote.png -------------------------------------------------------------------------------- /Screenshots/Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/Screenshots/Home.png -------------------------------------------------------------------------------- /Screenshots/Persons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/Screenshots/Persons.png -------------------------------------------------------------------------------- /Screenshots/Quotes By Category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/Screenshots/Quotes By Category.png -------------------------------------------------------------------------------- /Screenshots/Quotes By Person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/Screenshots/Quotes By Person.png -------------------------------------------------------------------------------- /Screenshots/Random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/Screenshots/Random.png -------------------------------------------------------------------------------- /Web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Web/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/Web/admin.py -------------------------------------------------------------------------------- /Web/api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/Web/api_views.py -------------------------------------------------------------------------------- /Web/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/Web/apps.py -------------------------------------------------------------------------------- /Web/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/Web/models.py -------------------------------------------------------------------------------- /Web/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/Web/serializers.py -------------------------------------------------------------------------------- /Web/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/Web/tests.py -------------------------------------------------------------------------------- /Web/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/Web/urls.py -------------------------------------------------------------------------------- /Web/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/Web/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates/Web/category_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/templates/Web/category_form.html -------------------------------------------------------------------------------- /templates/Web/person_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/templates/Web/person_form.html -------------------------------------------------------------------------------- /templates/Web/quote_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/templates/Web/quote_form.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/master.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/templates/master.html -------------------------------------------------------------------------------- /templates/other_master.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/templates/other_master.html -------------------------------------------------------------------------------- /templates/persons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/templates/persons.html -------------------------------------------------------------------------------- /templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/templates/registration/login.html -------------------------------------------------------------------------------- /templates/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/templates/static/css/bootstrap.css -------------------------------------------------------------------------------- /templates/static/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/templates/static/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /templates/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/templates/static/js/jquery.min.js -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mavenium/PyQuotes/HEAD/tox.ini --------------------------------------------------------------------------------