├── .gitignore ├── LICENSE ├── README.md ├── SecNews ├── __init__.pyc ├── click.py ├── click.pyc ├── default.py ├── default.pyc ├── manage.py ├── search.py ├── search.pyc ├── settings.py ├── settings.pyc ├── sort.py ├── sort.pyc ├── submit.py ├── submit.pyc ├── urls.py ├── urls.pyc ├── wsgi.py └── wsgi.pyc ├── Sec_News ├── __init__.pyc ├── admin.py ├── admin.pyc ├── migrations │ ├── 0001_initial.py │ ├── 0001_initial.pyc │ ├── 0002_auto_20180228_1541.py │ ├── 0002_auto_20180228_1541.pyc │ ├── 0003_auto_20180228_1555.py │ ├── 0003_auto_20180228_1555.pyc │ ├── 0004_auto_20180228_1556.py │ ├── 0004_auto_20180228_1556.pyc │ ├── 0005_auto_20180301_1430.py │ ├── 0005_auto_20180301_1430.pyc │ ├── 0006_auto_20180301_1504.py │ ├── 0006_auto_20180301_1504.pyc │ ├── 0007_auto_20180301_1511.py │ ├── 0007_auto_20180301_1511.pyc │ ├── 0008_auto_20180301_1519.py │ ├── 0008_auto_20180301_1519.pyc │ ├── 0009_auto_20180301_1527.py │ ├── 0009_auto_20180301_1527.pyc │ ├── 0010_auto_20180301_1529.py │ ├── 0010_auto_20180301_1529.pyc │ ├── 0011_auto_20180301_1533.py │ ├── 0011_auto_20180301_1533.pyc │ ├── 0012_auto_20180301_1553.py │ ├── 0012_auto_20180301_1553.pyc │ └── __init__.pyc ├── models.py ├── models.pyc ├── tests.py └── views.py ├── db.sqlite3 ├── manage.py ├── static ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap-theme.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── bootstrap.min.css.map ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery.js │ └── npm.js └── templates ├── header.html ├── index.html └── submit.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/README.md -------------------------------------------------------------------------------- /SecNews/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/SecNews/__init__.pyc -------------------------------------------------------------------------------- /SecNews/click.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/SecNews/click.py -------------------------------------------------------------------------------- /SecNews/click.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/SecNews/click.pyc -------------------------------------------------------------------------------- /SecNews/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/SecNews/default.py -------------------------------------------------------------------------------- /SecNews/default.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/SecNews/default.pyc -------------------------------------------------------------------------------- /SecNews/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/SecNews/manage.py -------------------------------------------------------------------------------- /SecNews/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/SecNews/search.py -------------------------------------------------------------------------------- /SecNews/search.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/SecNews/search.pyc -------------------------------------------------------------------------------- /SecNews/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/SecNews/settings.py -------------------------------------------------------------------------------- /SecNews/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/SecNews/settings.pyc -------------------------------------------------------------------------------- /SecNews/sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/SecNews/sort.py -------------------------------------------------------------------------------- /SecNews/sort.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/SecNews/sort.pyc -------------------------------------------------------------------------------- /SecNews/submit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/SecNews/submit.py -------------------------------------------------------------------------------- /SecNews/submit.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/SecNews/submit.pyc -------------------------------------------------------------------------------- /SecNews/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/SecNews/urls.py -------------------------------------------------------------------------------- /SecNews/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/SecNews/urls.pyc -------------------------------------------------------------------------------- /SecNews/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/SecNews/wsgi.py -------------------------------------------------------------------------------- /SecNews/wsgi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/SecNews/wsgi.pyc -------------------------------------------------------------------------------- /Sec_News/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/__init__.pyc -------------------------------------------------------------------------------- /Sec_News/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/admin.py -------------------------------------------------------------------------------- /Sec_News/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/admin.pyc -------------------------------------------------------------------------------- /Sec_News/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/migrations/0001_initial.py -------------------------------------------------------------------------------- /Sec_News/migrations/0001_initial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/migrations/0001_initial.pyc -------------------------------------------------------------------------------- /Sec_News/migrations/0002_auto_20180228_1541.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/migrations/0002_auto_20180228_1541.py -------------------------------------------------------------------------------- /Sec_News/migrations/0002_auto_20180228_1541.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/migrations/0002_auto_20180228_1541.pyc -------------------------------------------------------------------------------- /Sec_News/migrations/0003_auto_20180228_1555.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/migrations/0003_auto_20180228_1555.py -------------------------------------------------------------------------------- /Sec_News/migrations/0003_auto_20180228_1555.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/migrations/0003_auto_20180228_1555.pyc -------------------------------------------------------------------------------- /Sec_News/migrations/0004_auto_20180228_1556.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/migrations/0004_auto_20180228_1556.py -------------------------------------------------------------------------------- /Sec_News/migrations/0004_auto_20180228_1556.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/migrations/0004_auto_20180228_1556.pyc -------------------------------------------------------------------------------- /Sec_News/migrations/0005_auto_20180301_1430.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/migrations/0005_auto_20180301_1430.py -------------------------------------------------------------------------------- /Sec_News/migrations/0005_auto_20180301_1430.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/migrations/0005_auto_20180301_1430.pyc -------------------------------------------------------------------------------- /Sec_News/migrations/0006_auto_20180301_1504.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/migrations/0006_auto_20180301_1504.py -------------------------------------------------------------------------------- /Sec_News/migrations/0006_auto_20180301_1504.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/migrations/0006_auto_20180301_1504.pyc -------------------------------------------------------------------------------- /Sec_News/migrations/0007_auto_20180301_1511.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/migrations/0007_auto_20180301_1511.py -------------------------------------------------------------------------------- /Sec_News/migrations/0007_auto_20180301_1511.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/migrations/0007_auto_20180301_1511.pyc -------------------------------------------------------------------------------- /Sec_News/migrations/0008_auto_20180301_1519.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/migrations/0008_auto_20180301_1519.py -------------------------------------------------------------------------------- /Sec_News/migrations/0008_auto_20180301_1519.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/migrations/0008_auto_20180301_1519.pyc -------------------------------------------------------------------------------- /Sec_News/migrations/0009_auto_20180301_1527.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/migrations/0009_auto_20180301_1527.py -------------------------------------------------------------------------------- /Sec_News/migrations/0009_auto_20180301_1527.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/migrations/0009_auto_20180301_1527.pyc -------------------------------------------------------------------------------- /Sec_News/migrations/0010_auto_20180301_1529.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/migrations/0010_auto_20180301_1529.py -------------------------------------------------------------------------------- /Sec_News/migrations/0010_auto_20180301_1529.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/migrations/0010_auto_20180301_1529.pyc -------------------------------------------------------------------------------- /Sec_News/migrations/0011_auto_20180301_1533.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/migrations/0011_auto_20180301_1533.py -------------------------------------------------------------------------------- /Sec_News/migrations/0011_auto_20180301_1533.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/migrations/0011_auto_20180301_1533.pyc -------------------------------------------------------------------------------- /Sec_News/migrations/0012_auto_20180301_1553.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/migrations/0012_auto_20180301_1553.py -------------------------------------------------------------------------------- /Sec_News/migrations/0012_auto_20180301_1553.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/migrations/0012_auto_20180301_1553.pyc -------------------------------------------------------------------------------- /Sec_News/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/migrations/__init__.pyc -------------------------------------------------------------------------------- /Sec_News/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/models.py -------------------------------------------------------------------------------- /Sec_News/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/models.pyc -------------------------------------------------------------------------------- /Sec_News/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/Sec_News/tests.py -------------------------------------------------------------------------------- /Sec_News/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/manage.py -------------------------------------------------------------------------------- /static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/static/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/static/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/static/js/bootstrap.js -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/static/js/jquery.js -------------------------------------------------------------------------------- /static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/static/js/npm.js -------------------------------------------------------------------------------- /templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/templates/header.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/submit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GroupT00/SecNews/HEAD/templates/submit.html --------------------------------------------------------------------------------