├── .babelrc ├── .ebextensions ├── cronjob.cron └── django.config ├── .github ├── pull_request_template.md └── workflows │ ├── autopep8.yml │ └── django.yml ├── .gitignore ├── README.md ├── csv2model.py ├── edgar ├── __init__.py ├── add_trailing_zeros_to_cik.py ├── admin.py ├── apps.py ├── cikCusipCronJob.py ├── cusipTickerMappingSecurityUpdate.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── securityLinkCompanyCronJob.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── fedgehund_auth ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── fedgehund_profile ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── serializers.py ├── signals.py ├── tests.py ├── urls.py └── views.py ├── fedgehundapi ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── fedgehundui ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── src │ ├── components │ │ ├── App.js │ │ ├── ContactUs │ │ │ └── ContactUs.js │ │ ├── FAQ │ │ │ └── FAQ.js │ │ ├── Filer │ │ │ ├── Figures │ │ │ │ ├── QuarterMarketValueChart.js │ │ │ │ └── SummaryTable.js │ │ │ └── Filer.js │ │ ├── Helpers │ │ │ ├── checkUser.js │ │ │ └── getCookie.js │ │ ├── Homepage │ │ │ ├── Homepage.js │ │ │ └── Sections │ │ │ │ ├── Get_Started.js │ │ │ │ ├── Hero_Section.js │ │ │ │ ├── Inside_DB.js │ │ │ │ ├── Know_More.js │ │ │ │ ├── Popular_Portfolios.js │ │ │ │ └── What_Is_13f.js │ │ ├── Layout │ │ │ ├── Footer.js │ │ │ └── Navbar.js │ │ ├── Page_404 │ │ │ └── Page_404.js │ │ ├── Page_500 │ │ │ └── Page_500.js │ │ ├── Signin │ │ │ ├── GoogleSigninButton.js │ │ │ └── Signin.js │ │ ├── Signup │ │ │ ├── AddProfilePicture.js │ │ │ ├── Confirm.js │ │ │ ├── FormPersonalDetails.js │ │ │ ├── FormUserDetails.js │ │ │ ├── GoogleSignupButton.js │ │ │ ├── Success.js │ │ │ └── UserForm.js │ │ └── Stock │ │ │ ├── Stock.js │ │ │ └── TradingView │ │ │ ├── AdvancedChart.js │ │ │ ├── CompanyProfile.js │ │ │ ├── FundamentalData.js │ │ │ ├── MiniChart.js │ │ │ ├── SymbolInfo.js │ │ │ ├── SymbolOverview.js │ │ │ └── TechnicalAnalysis.js │ └── index.js ├── static │ ├── 404 │ │ ├── 404_left.png │ │ ├── 404_middle.png │ │ ├── 404_right.png │ │ └── 500_middle.png │ ├── fedgehundui │ │ ├── 60a03ac651fecc302865b115a4514b14.jpg │ │ ├── 60a03ac651fecc302865b115a4514b14.png │ │ └── main.js │ ├── global │ │ ├── profile_img.png │ │ └── tab_icon.png │ └── homepage │ │ ├── background.svg │ │ ├── homepage_background.png │ │ ├── know_more_img.png │ │ ├── logo.png │ │ ├── logo2.png │ │ ├── logo3.png │ │ ├── logo_christmas.png │ │ ├── lower_left.png │ │ ├── platform.png │ │ ├── right-arrow.png │ │ └── right.png ├── styles │ ├── Filer │ │ ├── QuarterMarketValueChart.css │ │ ├── SummaryTable.css │ │ └── filer.css │ ├── contactus.css │ ├── faq.css │ ├── footer.css │ ├── homepage.css │ ├── navbar.css │ ├── page_404.css │ ├── security.css │ └── signup │ │ └── styles.css ├── templates │ └── fedgehundui │ │ ├── global.css │ │ └── index.html ├── tests.py ├── urls.py └── views.py ├── filer ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── filerview.py ├── holdings ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20210408_0417.py │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── main.py ├── manage.py ├── mrktdb.png ├── package.json ├── positions_job.py ├── price_calculator_job.py ├── requirements.txt ├── scraper.py ├── securities ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── security ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── static ├── 404 │ ├── 404_left.png │ ├── 404_middle.png │ ├── 404_right.png │ └── 500_middle.png ├── admin │ ├── css │ │ ├── autocomplete.css │ │ ├── base.css │ │ ├── changelists.css │ │ ├── dashboard.css │ │ ├── fonts.css │ │ ├── forms.css │ │ ├── login.css │ │ ├── responsive.css │ │ ├── responsive_rtl.css │ │ ├── rtl.css │ │ ├── vendor │ │ │ └── select2 │ │ │ │ ├── LICENSE-SELECT2.md │ │ │ │ ├── select2.css │ │ │ │ └── select2.min.css │ │ └── widgets.css │ ├── csv_files │ │ ├── CIK_CUSIP.csv │ │ ├── Unique_Mappings.csv │ │ ├── cik_cusip_mapping.csv │ │ └── final_cik_cusip_mapping.csv │ ├── fonts │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── Roboto-Bold-webfont.woff │ │ ├── Roboto-Light-webfont.woff │ │ └── Roboto-Regular-webfont.woff │ ├── img │ │ ├── LICENSE │ │ ├── README.txt │ │ ├── calendar-icons.svg │ │ ├── gis │ │ │ ├── move_vertex_off.svg │ │ │ └── move_vertex_on.svg │ │ ├── icon-addlink.svg │ │ ├── icon-alert.svg │ │ ├── icon-calendar.svg │ │ ├── icon-changelink.svg │ │ ├── icon-clock.svg │ │ ├── icon-deletelink.svg │ │ ├── icon-no.svg │ │ ├── icon-unknown-alt.svg │ │ ├── icon-unknown.svg │ │ ├── icon-viewlink.svg │ │ ├── icon-yes.svg │ │ ├── inline-delete.svg │ │ ├── search.svg │ │ ├── selector-icons.svg │ │ ├── sorting-icons.svg │ │ ├── tooltag-add.svg │ │ └── tooltag-arrowright.svg │ └── js │ │ ├── SelectBox.js │ │ ├── SelectFilter2.js │ │ ├── actions.js │ │ ├── actions.min.js │ │ ├── admin │ │ ├── DateTimeShortcuts.js │ │ └── RelatedObjectLookups.js │ │ ├── autocomplete.js │ │ ├── calendar.js │ │ ├── cancel.js │ │ ├── change_form.js │ │ ├── collapse.js │ │ ├── collapse.min.js │ │ ├── core.js │ │ ├── inlines.js │ │ ├── inlines.min.js │ │ ├── jquery.init.js │ │ ├── popup_response.js │ │ ├── prepopulate.js │ │ ├── prepopulate.min.js │ │ ├── prepopulate_init.js │ │ ├── urlify.js │ │ └── vendor │ │ ├── jquery │ │ ├── LICENSE.txt │ │ ├── jquery.js │ │ └── jquery.min.js │ │ ├── select2 │ │ ├── LICENSE.md │ │ ├── i18n │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── dsb.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hsb.js │ │ │ ├── hu.js │ │ │ ├── hy.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── ps.js │ │ │ ├── pt-BR.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-Cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tk.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ ├── select2.full.js │ │ └── select2.full.min.js │ │ └── xregexp │ │ ├── LICENSE.txt │ │ ├── xregexp.js │ │ └── xregexp.min.js ├── facebook │ └── js │ │ └── fbconnect.js ├── fedgehundui │ ├── 60a03ac651fecc302865b115a4514b14.jpg │ ├── 60a03ac651fecc302865b115a4514b14.png │ └── main.js ├── global │ ├── profile_img.png │ └── tab_icon.png ├── homepage │ ├── background.svg │ ├── homepage_background.png │ ├── know_more_img.png │ ├── logo.png │ ├── logo2.png │ ├── logo3.png │ ├── logo_christmas.png │ ├── logo_real.png │ ├── lower_left.png │ ├── platform.png │ ├── right-arrow.png │ └── right.png └── rest_framework │ ├── css │ ├── bootstrap-theme.min.css │ ├── bootstrap-tweaks.css │ ├── bootstrap.min.css │ ├── default.css │ ├── font-awesome-4.0.3.css │ └── prettify.css │ ├── docs │ ├── css │ │ ├── base.css │ │ ├── highlight.css │ │ └── jquery.json-view.min.css │ ├── img │ │ ├── favicon.ico │ │ └── grid.png │ └── js │ │ ├── api.js │ │ ├── highlight.pack.js │ │ └── jquery.json-view.min.js │ ├── fonts │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 │ ├── img │ ├── glyphicons-halflings-white.png │ ├── glyphicons-halflings.png │ └── grid.png │ └── js │ ├── ajax-form.js │ ├── bootstrap.min.js │ ├── coreapi-0.1.1.js │ ├── csrf.js │ ├── default.js │ ├── jquery-3.4.1.min.js │ └── prettify-min.js ├── testapp ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py └── views.py └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/.babelrc -------------------------------------------------------------------------------- /.ebextensions/cronjob.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/.ebextensions/cronjob.cron -------------------------------------------------------------------------------- /.ebextensions/django.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/.ebextensions/django.config -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/autopep8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/.github/workflows/autopep8.yml -------------------------------------------------------------------------------- /.github/workflows/django.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/.github/workflows/django.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/README.md -------------------------------------------------------------------------------- /csv2model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/csv2model.py -------------------------------------------------------------------------------- /edgar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /edgar/add_trailing_zeros_to_cik.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/edgar/add_trailing_zeros_to_cik.py -------------------------------------------------------------------------------- /edgar/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/edgar/admin.py -------------------------------------------------------------------------------- /edgar/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/edgar/apps.py -------------------------------------------------------------------------------- /edgar/cikCusipCronJob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/edgar/cikCusipCronJob.py -------------------------------------------------------------------------------- /edgar/cusipTickerMappingSecurityUpdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/edgar/cusipTickerMappingSecurityUpdate.py -------------------------------------------------------------------------------- /edgar/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/edgar/migrations/0001_initial.py -------------------------------------------------------------------------------- /edgar/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /edgar/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/edgar/models.py -------------------------------------------------------------------------------- /edgar/securityLinkCompanyCronJob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/edgar/securityLinkCompanyCronJob.py -------------------------------------------------------------------------------- /edgar/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/edgar/serializers.py -------------------------------------------------------------------------------- /edgar/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/edgar/tests.py -------------------------------------------------------------------------------- /edgar/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/edgar/urls.py -------------------------------------------------------------------------------- /edgar/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/edgar/views.py -------------------------------------------------------------------------------- /fedgehund_auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fedgehund_auth/admin.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fedgehund_auth/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehund_auth/apps.py -------------------------------------------------------------------------------- /fedgehund_auth/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fedgehund_auth/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fedgehund_auth/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehund_auth/serializers.py -------------------------------------------------------------------------------- /fedgehund_auth/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehund_auth/tests.py -------------------------------------------------------------------------------- /fedgehund_auth/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehund_auth/urls.py -------------------------------------------------------------------------------- /fedgehund_auth/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehund_auth/views.py -------------------------------------------------------------------------------- /fedgehund_profile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fedgehund_profile/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehund_profile/admin.py -------------------------------------------------------------------------------- /fedgehund_profile/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehund_profile/apps.py -------------------------------------------------------------------------------- /fedgehund_profile/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehund_profile/migrations/0001_initial.py -------------------------------------------------------------------------------- /fedgehund_profile/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fedgehund_profile/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehund_profile/models.py -------------------------------------------------------------------------------- /fedgehund_profile/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehund_profile/serializers.py -------------------------------------------------------------------------------- /fedgehund_profile/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehund_profile/signals.py -------------------------------------------------------------------------------- /fedgehund_profile/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehund_profile/tests.py -------------------------------------------------------------------------------- /fedgehund_profile/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehund_profile/urls.py -------------------------------------------------------------------------------- /fedgehund_profile/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehund_profile/views.py -------------------------------------------------------------------------------- /fedgehundapi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fedgehundapi/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundapi/asgi.py -------------------------------------------------------------------------------- /fedgehundapi/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundapi/settings.py -------------------------------------------------------------------------------- /fedgehundapi/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundapi/urls.py -------------------------------------------------------------------------------- /fedgehundapi/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundapi/wsgi.py -------------------------------------------------------------------------------- /fedgehundui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fedgehundui/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/admin.py -------------------------------------------------------------------------------- /fedgehundui/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/apps.py -------------------------------------------------------------------------------- /fedgehundui/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fedgehundui/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/models.py -------------------------------------------------------------------------------- /fedgehundui/src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/App.js -------------------------------------------------------------------------------- /fedgehundui/src/components/ContactUs/ContactUs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/ContactUs/ContactUs.js -------------------------------------------------------------------------------- /fedgehundui/src/components/FAQ/FAQ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/FAQ/FAQ.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Filer/Figures/QuarterMarketValueChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Filer/Figures/QuarterMarketValueChart.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Filer/Figures/SummaryTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Filer/Figures/SummaryTable.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Filer/Filer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Filer/Filer.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Helpers/checkUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Helpers/checkUser.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Helpers/getCookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Helpers/getCookie.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Homepage/Homepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Homepage/Homepage.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Homepage/Sections/Get_Started.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Homepage/Sections/Get_Started.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Homepage/Sections/Hero_Section.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Homepage/Sections/Hero_Section.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Homepage/Sections/Inside_DB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Homepage/Sections/Inside_DB.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Homepage/Sections/Know_More.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Homepage/Sections/Know_More.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Homepage/Sections/Popular_Portfolios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Homepage/Sections/Popular_Portfolios.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Homepage/Sections/What_Is_13f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Homepage/Sections/What_Is_13f.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Layout/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Layout/Footer.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Layout/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Layout/Navbar.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Page_404/Page_404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Page_404/Page_404.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Page_500/Page_500.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Page_500/Page_500.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Signin/GoogleSigninButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Signin/GoogleSigninButton.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Signin/Signin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Signin/Signin.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Signup/AddProfilePicture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Signup/AddProfilePicture.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Signup/Confirm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Signup/Confirm.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Signup/FormPersonalDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Signup/FormPersonalDetails.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Signup/FormUserDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Signup/FormUserDetails.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Signup/GoogleSignupButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Signup/GoogleSignupButton.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Signup/Success.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Signup/Success.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Signup/UserForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Signup/UserForm.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Stock/Stock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Stock/Stock.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Stock/TradingView/AdvancedChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Stock/TradingView/AdvancedChart.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Stock/TradingView/CompanyProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Stock/TradingView/CompanyProfile.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Stock/TradingView/FundamentalData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Stock/TradingView/FundamentalData.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Stock/TradingView/MiniChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Stock/TradingView/MiniChart.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Stock/TradingView/SymbolInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Stock/TradingView/SymbolInfo.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Stock/TradingView/SymbolOverview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Stock/TradingView/SymbolOverview.js -------------------------------------------------------------------------------- /fedgehundui/src/components/Stock/TradingView/TechnicalAnalysis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/components/Stock/TradingView/TechnicalAnalysis.js -------------------------------------------------------------------------------- /fedgehundui/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/src/index.js -------------------------------------------------------------------------------- /fedgehundui/static/404/404_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/static/404/404_left.png -------------------------------------------------------------------------------- /fedgehundui/static/404/404_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/static/404/404_middle.png -------------------------------------------------------------------------------- /fedgehundui/static/404/404_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/static/404/404_right.png -------------------------------------------------------------------------------- /fedgehundui/static/404/500_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/static/404/500_middle.png -------------------------------------------------------------------------------- /fedgehundui/static/fedgehundui/60a03ac651fecc302865b115a4514b14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/static/fedgehundui/60a03ac651fecc302865b115a4514b14.jpg -------------------------------------------------------------------------------- /fedgehundui/static/fedgehundui/60a03ac651fecc302865b115a4514b14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/static/fedgehundui/60a03ac651fecc302865b115a4514b14.png -------------------------------------------------------------------------------- /fedgehundui/static/fedgehundui/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/static/fedgehundui/main.js -------------------------------------------------------------------------------- /fedgehundui/static/global/profile_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/static/global/profile_img.png -------------------------------------------------------------------------------- /fedgehundui/static/global/tab_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/static/global/tab_icon.png -------------------------------------------------------------------------------- /fedgehundui/static/homepage/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/static/homepage/background.svg -------------------------------------------------------------------------------- /fedgehundui/static/homepage/homepage_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/static/homepage/homepage_background.png -------------------------------------------------------------------------------- /fedgehundui/static/homepage/know_more_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/static/homepage/know_more_img.png -------------------------------------------------------------------------------- /fedgehundui/static/homepage/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/static/homepage/logo.png -------------------------------------------------------------------------------- /fedgehundui/static/homepage/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/static/homepage/logo2.png -------------------------------------------------------------------------------- /fedgehundui/static/homepage/logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/static/homepage/logo3.png -------------------------------------------------------------------------------- /fedgehundui/static/homepage/logo_christmas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/static/homepage/logo_christmas.png -------------------------------------------------------------------------------- /fedgehundui/static/homepage/lower_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/static/homepage/lower_left.png -------------------------------------------------------------------------------- /fedgehundui/static/homepage/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/static/homepage/platform.png -------------------------------------------------------------------------------- /fedgehundui/static/homepage/right-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/static/homepage/right-arrow.png -------------------------------------------------------------------------------- /fedgehundui/static/homepage/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/static/homepage/right.png -------------------------------------------------------------------------------- /fedgehundui/styles/Filer/QuarterMarketValueChart.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fedgehundui/styles/Filer/SummaryTable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/styles/Filer/SummaryTable.css -------------------------------------------------------------------------------- /fedgehundui/styles/Filer/filer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/styles/Filer/filer.css -------------------------------------------------------------------------------- /fedgehundui/styles/contactus.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/styles/contactus.css -------------------------------------------------------------------------------- /fedgehundui/styles/faq.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/styles/faq.css -------------------------------------------------------------------------------- /fedgehundui/styles/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/styles/footer.css -------------------------------------------------------------------------------- /fedgehundui/styles/homepage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/styles/homepage.css -------------------------------------------------------------------------------- /fedgehundui/styles/navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/styles/navbar.css -------------------------------------------------------------------------------- /fedgehundui/styles/page_404.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/styles/page_404.css -------------------------------------------------------------------------------- /fedgehundui/styles/security.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/styles/security.css -------------------------------------------------------------------------------- /fedgehundui/styles/signup/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/styles/signup/styles.css -------------------------------------------------------------------------------- /fedgehundui/templates/fedgehundui/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/templates/fedgehundui/global.css -------------------------------------------------------------------------------- /fedgehundui/templates/fedgehundui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/templates/fedgehundui/index.html -------------------------------------------------------------------------------- /fedgehundui/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/tests.py -------------------------------------------------------------------------------- /fedgehundui/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/urls.py -------------------------------------------------------------------------------- /fedgehundui/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/fedgehundui/views.py -------------------------------------------------------------------------------- /filer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filer/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/filer/admin.py -------------------------------------------------------------------------------- /filer/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/filer/apps.py -------------------------------------------------------------------------------- /filer/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/filer/migrations/0001_initial.py -------------------------------------------------------------------------------- /filer/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/filer/models.py -------------------------------------------------------------------------------- /filer/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/filer/serializers.py -------------------------------------------------------------------------------- /filer/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/filer/tests.py -------------------------------------------------------------------------------- /filer/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/filer/urls.py -------------------------------------------------------------------------------- /filer/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/filer/views.py -------------------------------------------------------------------------------- /filerview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/filerview.py -------------------------------------------------------------------------------- /holdings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /holdings/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/holdings/admin.py -------------------------------------------------------------------------------- /holdings/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/holdings/apps.py -------------------------------------------------------------------------------- /holdings/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/holdings/migrations/0001_initial.py -------------------------------------------------------------------------------- /holdings/migrations/0002_auto_20210408_0417.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/holdings/migrations/0002_auto_20210408_0417.py -------------------------------------------------------------------------------- /holdings/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /holdings/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/holdings/models.py -------------------------------------------------------------------------------- /holdings/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/holdings/serializers.py -------------------------------------------------------------------------------- /holdings/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/holdings/tests.py -------------------------------------------------------------------------------- /holdings/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/holdings/urls.py -------------------------------------------------------------------------------- /holdings/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/holdings/views.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/main.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/manage.py -------------------------------------------------------------------------------- /mrktdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/mrktdb.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/package.json -------------------------------------------------------------------------------- /positions_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/positions_job.py -------------------------------------------------------------------------------- /price_calculator_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/price_calculator_job.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/requirements.txt -------------------------------------------------------------------------------- /scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/scraper.py -------------------------------------------------------------------------------- /securities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /securities/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/securities/admin.py -------------------------------------------------------------------------------- /securities/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/securities/apps.py -------------------------------------------------------------------------------- /securities/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /securities/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/securities/models.py -------------------------------------------------------------------------------- /securities/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/securities/tests.py -------------------------------------------------------------------------------- /securities/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /security/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /security/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/security/admin.py -------------------------------------------------------------------------------- /security/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/security/apps.py -------------------------------------------------------------------------------- /security/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/security/migrations/0001_initial.py -------------------------------------------------------------------------------- /security/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /security/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/security/models.py -------------------------------------------------------------------------------- /security/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/security/tests.py -------------------------------------------------------------------------------- /security/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /static/404/404_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/404/404_left.png -------------------------------------------------------------------------------- /static/404/404_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/404/404_middle.png -------------------------------------------------------------------------------- /static/404/404_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/404/404_right.png -------------------------------------------------------------------------------- /static/404/500_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/404/500_middle.png -------------------------------------------------------------------------------- /static/admin/css/autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/css/autocomplete.css -------------------------------------------------------------------------------- /static/admin/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/css/base.css -------------------------------------------------------------------------------- /static/admin/css/changelists.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/css/changelists.css -------------------------------------------------------------------------------- /static/admin/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/css/dashboard.css -------------------------------------------------------------------------------- /static/admin/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/css/fonts.css -------------------------------------------------------------------------------- /static/admin/css/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/css/forms.css -------------------------------------------------------------------------------- /static/admin/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/css/login.css -------------------------------------------------------------------------------- /static/admin/css/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/css/responsive.css -------------------------------------------------------------------------------- /static/admin/css/responsive_rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/css/responsive_rtl.css -------------------------------------------------------------------------------- /static/admin/css/rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/css/rtl.css -------------------------------------------------------------------------------- /static/admin/css/vendor/select2/LICENSE-SELECT2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/css/vendor/select2/LICENSE-SELECT2.md -------------------------------------------------------------------------------- /static/admin/css/vendor/select2/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/css/vendor/select2/select2.css -------------------------------------------------------------------------------- /static/admin/css/vendor/select2/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/css/vendor/select2/select2.min.css -------------------------------------------------------------------------------- /static/admin/css/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/css/widgets.css -------------------------------------------------------------------------------- /static/admin/csv_files/CIK_CUSIP.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/csv_files/CIK_CUSIP.csv -------------------------------------------------------------------------------- /static/admin/csv_files/Unique_Mappings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/csv_files/Unique_Mappings.csv -------------------------------------------------------------------------------- /static/admin/csv_files/cik_cusip_mapping.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/csv_files/cik_cusip_mapping.csv -------------------------------------------------------------------------------- /static/admin/csv_files/final_cik_cusip_mapping.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/csv_files/final_cik_cusip_mapping.csv -------------------------------------------------------------------------------- /static/admin/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/fonts/LICENSE.txt -------------------------------------------------------------------------------- /static/admin/fonts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/fonts/README.txt -------------------------------------------------------------------------------- /static/admin/fonts/Roboto-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/fonts/Roboto-Bold-webfont.woff -------------------------------------------------------------------------------- /static/admin/fonts/Roboto-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/fonts/Roboto-Light-webfont.woff -------------------------------------------------------------------------------- /static/admin/fonts/Roboto-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/fonts/Roboto-Regular-webfont.woff -------------------------------------------------------------------------------- /static/admin/img/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/img/LICENSE -------------------------------------------------------------------------------- /static/admin/img/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/img/README.txt -------------------------------------------------------------------------------- /static/admin/img/calendar-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/img/calendar-icons.svg -------------------------------------------------------------------------------- /static/admin/img/gis/move_vertex_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/img/gis/move_vertex_off.svg -------------------------------------------------------------------------------- /static/admin/img/gis/move_vertex_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/img/gis/move_vertex_on.svg -------------------------------------------------------------------------------- /static/admin/img/icon-addlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/img/icon-addlink.svg -------------------------------------------------------------------------------- /static/admin/img/icon-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/img/icon-alert.svg -------------------------------------------------------------------------------- /static/admin/img/icon-calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/img/icon-calendar.svg -------------------------------------------------------------------------------- /static/admin/img/icon-changelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/img/icon-changelink.svg -------------------------------------------------------------------------------- /static/admin/img/icon-clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/img/icon-clock.svg -------------------------------------------------------------------------------- /static/admin/img/icon-deletelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/img/icon-deletelink.svg -------------------------------------------------------------------------------- /static/admin/img/icon-no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/img/icon-no.svg -------------------------------------------------------------------------------- /static/admin/img/icon-unknown-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/img/icon-unknown-alt.svg -------------------------------------------------------------------------------- /static/admin/img/icon-unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/img/icon-unknown.svg -------------------------------------------------------------------------------- /static/admin/img/icon-viewlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/img/icon-viewlink.svg -------------------------------------------------------------------------------- /static/admin/img/icon-yes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/img/icon-yes.svg -------------------------------------------------------------------------------- /static/admin/img/inline-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/img/inline-delete.svg -------------------------------------------------------------------------------- /static/admin/img/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/img/search.svg -------------------------------------------------------------------------------- /static/admin/img/selector-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/img/selector-icons.svg -------------------------------------------------------------------------------- /static/admin/img/sorting-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/img/sorting-icons.svg -------------------------------------------------------------------------------- /static/admin/img/tooltag-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/img/tooltag-add.svg -------------------------------------------------------------------------------- /static/admin/img/tooltag-arrowright.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/img/tooltag-arrowright.svg -------------------------------------------------------------------------------- /static/admin/js/SelectBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/SelectBox.js -------------------------------------------------------------------------------- /static/admin/js/SelectFilter2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/SelectFilter2.js -------------------------------------------------------------------------------- /static/admin/js/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/actions.js -------------------------------------------------------------------------------- /static/admin/js/actions.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/actions.min.js -------------------------------------------------------------------------------- /static/admin/js/admin/DateTimeShortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/admin/DateTimeShortcuts.js -------------------------------------------------------------------------------- /static/admin/js/admin/RelatedObjectLookups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/admin/RelatedObjectLookups.js -------------------------------------------------------------------------------- /static/admin/js/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/autocomplete.js -------------------------------------------------------------------------------- /static/admin/js/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/calendar.js -------------------------------------------------------------------------------- /static/admin/js/cancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/cancel.js -------------------------------------------------------------------------------- /static/admin/js/change_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/change_form.js -------------------------------------------------------------------------------- /static/admin/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/collapse.js -------------------------------------------------------------------------------- /static/admin/js/collapse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/collapse.min.js -------------------------------------------------------------------------------- /static/admin/js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/core.js -------------------------------------------------------------------------------- /static/admin/js/inlines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/inlines.js -------------------------------------------------------------------------------- /static/admin/js/inlines.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/inlines.min.js -------------------------------------------------------------------------------- /static/admin/js/jquery.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/jquery.init.js -------------------------------------------------------------------------------- /static/admin/js/popup_response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/popup_response.js -------------------------------------------------------------------------------- /static/admin/js/prepopulate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/prepopulate.js -------------------------------------------------------------------------------- /static/admin/js/prepopulate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/prepopulate.min.js -------------------------------------------------------------------------------- /static/admin/js/prepopulate_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/prepopulate_init.js -------------------------------------------------------------------------------- /static/admin/js/urlify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/urlify.js -------------------------------------------------------------------------------- /static/admin/js/vendor/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/jquery/LICENSE.txt -------------------------------------------------------------------------------- /static/admin/js/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /static/admin/js/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/LICENSE.md -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/af.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/ar.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/az.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/bg.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/bn.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/bs.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/ca.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/cs.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/da.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/de.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/dsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/dsb.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/el.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/en.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/es.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/et.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/eu.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/fa.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/fi.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/fr.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/gl.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/he.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/hi.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/hr.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/hsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/hsb.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/hu.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/hy.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/id.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/is.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/it.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/ja.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/ka.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/km.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/ko.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/lt.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/lv.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/mk.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/ms.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/nb.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/ne.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/nl.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/pl.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/ps.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/pt-BR.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/pt.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/ro.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/ru.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/sk.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/sl.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/sq.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/sr-Cyrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/sr-Cyrl.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/sr.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/sv.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/th.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/tk.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/tr.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/uk.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/vi.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/zh-CN.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/i18n/zh-TW.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/select2.full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/select2.full.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/select2.full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/select2/select2.full.min.js -------------------------------------------------------------------------------- /static/admin/js/vendor/xregexp/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/xregexp/LICENSE.txt -------------------------------------------------------------------------------- /static/admin/js/vendor/xregexp/xregexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/xregexp/xregexp.js -------------------------------------------------------------------------------- /static/admin/js/vendor/xregexp/xregexp.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/admin/js/vendor/xregexp/xregexp.min.js -------------------------------------------------------------------------------- /static/facebook/js/fbconnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/facebook/js/fbconnect.js -------------------------------------------------------------------------------- /static/fedgehundui/60a03ac651fecc302865b115a4514b14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/fedgehundui/60a03ac651fecc302865b115a4514b14.jpg -------------------------------------------------------------------------------- /static/fedgehundui/60a03ac651fecc302865b115a4514b14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/fedgehundui/60a03ac651fecc302865b115a4514b14.png -------------------------------------------------------------------------------- /static/fedgehundui/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/fedgehundui/main.js -------------------------------------------------------------------------------- /static/global/profile_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/global/profile_img.png -------------------------------------------------------------------------------- /static/global/tab_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/global/tab_icon.png -------------------------------------------------------------------------------- /static/homepage/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/homepage/background.svg -------------------------------------------------------------------------------- /static/homepage/homepage_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/homepage/homepage_background.png -------------------------------------------------------------------------------- /static/homepage/know_more_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/homepage/know_more_img.png -------------------------------------------------------------------------------- /static/homepage/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/homepage/logo.png -------------------------------------------------------------------------------- /static/homepage/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/homepage/logo2.png -------------------------------------------------------------------------------- /static/homepage/logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/homepage/logo3.png -------------------------------------------------------------------------------- /static/homepage/logo_christmas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/homepage/logo_christmas.png -------------------------------------------------------------------------------- /static/homepage/logo_real.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/homepage/logo_real.png -------------------------------------------------------------------------------- /static/homepage/lower_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/homepage/lower_left.png -------------------------------------------------------------------------------- /static/homepage/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/homepage/platform.png -------------------------------------------------------------------------------- /static/homepage/right-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/homepage/right-arrow.png -------------------------------------------------------------------------------- /static/homepage/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/homepage/right.png -------------------------------------------------------------------------------- /static/rest_framework/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static/rest_framework/css/bootstrap-tweaks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/css/bootstrap-tweaks.css -------------------------------------------------------------------------------- /static/rest_framework/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/rest_framework/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/css/default.css -------------------------------------------------------------------------------- /static/rest_framework/css/font-awesome-4.0.3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/css/font-awesome-4.0.3.css -------------------------------------------------------------------------------- /static/rest_framework/css/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/css/prettify.css -------------------------------------------------------------------------------- /static/rest_framework/docs/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/docs/css/base.css -------------------------------------------------------------------------------- /static/rest_framework/docs/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/docs/css/highlight.css -------------------------------------------------------------------------------- /static/rest_framework/docs/css/jquery.json-view.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/docs/css/jquery.json-view.min.css -------------------------------------------------------------------------------- /static/rest_framework/docs/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/docs/img/favicon.ico -------------------------------------------------------------------------------- /static/rest_framework/docs/img/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/docs/img/grid.png -------------------------------------------------------------------------------- /static/rest_framework/docs/js/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/docs/js/api.js -------------------------------------------------------------------------------- /static/rest_framework/docs/js/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/docs/js/highlight.pack.js -------------------------------------------------------------------------------- /static/rest_framework/docs/js/jquery.json-view.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/docs/js/jquery.json-view.min.js -------------------------------------------------------------------------------- /static/rest_framework/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/rest_framework/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /static/rest_framework/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/rest_framework/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/rest_framework/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/rest_framework/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/rest_framework/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/rest_framework/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/rest_framework/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/rest_framework/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /static/rest_framework/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /static/rest_framework/img/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/img/grid.png -------------------------------------------------------------------------------- /static/rest_framework/js/ajax-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/js/ajax-form.js -------------------------------------------------------------------------------- /static/rest_framework/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/rest_framework/js/coreapi-0.1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/js/coreapi-0.1.1.js -------------------------------------------------------------------------------- /static/rest_framework/js/csrf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/js/csrf.js -------------------------------------------------------------------------------- /static/rest_framework/js/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/js/default.js -------------------------------------------------------------------------------- /static/rest_framework/js/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/js/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /static/rest_framework/js/prettify-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/static/rest_framework/js/prettify-min.js -------------------------------------------------------------------------------- /testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/testapp/admin.py -------------------------------------------------------------------------------- /testapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/testapp/apps.py -------------------------------------------------------------------------------- /testapp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/testapp/migrations/0001_initial.py -------------------------------------------------------------------------------- /testapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/testapp/models.py -------------------------------------------------------------------------------- /testapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/testapp/tests.py -------------------------------------------------------------------------------- /testapp/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedgeHund/mrktdb/HEAD/webpack.config.js --------------------------------------------------------------------------------