├── .env
├── .gitignore
├── CHANGELOG.md
├── Dockerfile
├── LICENSE.md
├── Procfile
├── README.md
├── app
├── __init__.py
├── admin.py
├── config.py
├── migrations
│ └── __init__.py
├── models.py
├── tests.py
├── urls.py
└── views.py
├── authentication
├── __init__.py
├── admin.py
├── config.py
├── forms.py
├── migrations
│ └── __init__.py
├── models.py
├── tests.py
├── urls.py
└── views.py
├── core
├── __init__.py
├── asgi.py
├── settings.py
├── static
│ ├── assets
│ │ ├── css
│ │ │ ├── volt.css
│ │ │ ├── volt.css.map
│ │ │ └── volt.min.css
│ │ ├── img
│ │ │ ├── brand
│ │ │ │ ├── dark.svg
│ │ │ │ └── light.svg
│ │ │ ├── favicon
│ │ │ │ ├── android-chrome-192x192.png
│ │ │ │ ├── android-chrome-512x512.png
│ │ │ │ ├── apple-touch-icon.png
│ │ │ │ ├── browserconfig.xml
│ │ │ │ ├── favicon-16x16.png
│ │ │ │ ├── favicon-32x32.png
│ │ │ │ ├── favicon.ico
│ │ │ │ ├── manifest.json
│ │ │ │ ├── mstile-150x150.png
│ │ │ │ ├── safari-pinned-tab.svg
│ │ │ │ └── site.webmanifest
│ │ │ ├── flags
│ │ │ │ ├── aland-islands.svg
│ │ │ │ ├── albania.svg
│ │ │ │ ├── algeria.svg
│ │ │ │ ├── american-samoa.svg
│ │ │ │ ├── anguilla.svg
│ │ │ │ ├── argentina.svg
│ │ │ │ ├── armenia.svg
│ │ │ │ ├── australia.svg
│ │ │ │ ├── austria.svg
│ │ │ │ ├── azerbaijan.svg
│ │ │ │ ├── bahrain.svg
│ │ │ │ ├── belarus.svg
│ │ │ │ ├── belgium.svg
│ │ │ │ ├── bolivia.svg
│ │ │ │ ├── bosnia-and-herzegovina.svg
│ │ │ │ ├── botswana.svg
│ │ │ │ ├── brazil.svg
│ │ │ │ ├── bulgaria.svg
│ │ │ │ ├── cambodia.svg
│ │ │ │ ├── cameroon.svg
│ │ │ │ ├── canada.svg
│ │ │ │ ├── chile.svg
│ │ │ │ ├── china.svg
│ │ │ │ ├── colombia.svg
│ │ │ │ ├── costa-rica.svg
│ │ │ │ ├── croatia.svg
│ │ │ │ ├── cuba.svg
│ │ │ │ ├── cyprus.svg
│ │ │ │ ├── czech-republic.svg
│ │ │ │ ├── denmark.svg
│ │ │ │ ├── ecuador.svg
│ │ │ │ ├── egypt.svg
│ │ │ │ ├── estonia.svg
│ │ │ │ ├── ethiopia.svg
│ │ │ │ ├── finland.svg
│ │ │ │ ├── france.svg
│ │ │ │ ├── georgia.svg
│ │ │ │ ├── germany.svg
│ │ │ │ ├── greece.svg
│ │ │ │ ├── haiti.svg
│ │ │ │ ├── hong-kong.svg
│ │ │ │ ├── hungary.svg
│ │ │ │ ├── iceland.svg
│ │ │ │ ├── india.svg
│ │ │ │ ├── indonesia.svg
│ │ │ │ ├── iran.svg
│ │ │ │ ├── iraq.svg
│ │ │ │ ├── ireland.svg
│ │ │ │ ├── israel.svg
│ │ │ │ ├── italy.svg
│ │ │ │ ├── ivory-coast.svg
│ │ │ │ ├── japan.svg
│ │ │ │ ├── kazakhstan.svg
│ │ │ │ ├── kuwait.svg
│ │ │ │ ├── latvia.svg
│ │ │ │ ├── liechtenstein.svg
│ │ │ │ ├── lithuania.svg
│ │ │ │ ├── luxembourg.svg
│ │ │ │ ├── malaysia.svg
│ │ │ │ ├── mexico.svg
│ │ │ │ ├── mongolia.svg
│ │ │ │ ├── montenegro.svg
│ │ │ │ ├── nauru.svg
│ │ │ │ ├── netherlands.svg
│ │ │ │ ├── nicaragua.svg
│ │ │ │ ├── nigeria.svg
│ │ │ │ ├── norway.svg
│ │ │ │ ├── pakistan.svg
│ │ │ │ ├── panama.svg
│ │ │ │ ├── paraguay.svg
│ │ │ │ ├── peru.svg
│ │ │ │ ├── philippines.svg
│ │ │ │ ├── portugal.svg
│ │ │ │ ├── puerto-rico.svg
│ │ │ │ ├── republic-of-macedonia.svg
│ │ │ │ ├── republic-of-poland.svg
│ │ │ │ ├── romania.svg
│ │ │ │ ├── russia.svg
│ │ │ │ ├── serbia.svg
│ │ │ │ ├── singapore.svg
│ │ │ │ ├── slovakia.svg
│ │ │ │ ├── slovenia.svg
│ │ │ │ ├── south-africa.svg
│ │ │ │ ├── south-korea.svg
│ │ │ │ ├── spain.svg
│ │ │ │ ├── sri-lanka.svg
│ │ │ │ ├── sweden.svg
│ │ │ │ ├── switzerland.svg
│ │ │ │ ├── taiwan.svg
│ │ │ │ ├── thailand.svg
│ │ │ │ ├── tunisia.svg
│ │ │ │ ├── turkey.svg
│ │ │ │ ├── ukraine.svg
│ │ │ │ ├── united-arab-emirates.svg
│ │ │ │ ├── united-kingdom.svg
│ │ │ │ ├── united-states-of-america.svg
│ │ │ │ ├── united-states.svg
│ │ │ │ ├── uruguay.svg
│ │ │ │ ├── venezuela.svg
│ │ │ │ └── vietnam.svg
│ │ │ ├── illustrations
│ │ │ │ ├── 404.svg
│ │ │ │ ├── 500.svg
│ │ │ │ ├── bs5-illustrations.svg
│ │ │ │ └── signin.svg
│ │ │ ├── mockup-presentation.png
│ │ │ ├── pages
│ │ │ │ ├── 404.jpg
│ │ │ │ ├── 500.jpg
│ │ │ │ ├── forgot-password.jpg
│ │ │ │ ├── lock.jpg
│ │ │ │ ├── overview.jpg
│ │ │ │ ├── reset-password.jpg
│ │ │ │ ├── settings.jpg
│ │ │ │ ├── sign-in.jpg
│ │ │ │ ├── sign-up.jpg
│ │ │ │ └── transactions.jpg
│ │ │ ├── paypal-logo.svg
│ │ │ ├── profile-cover.jpg
│ │ │ ├── team
│ │ │ │ ├── default-profile-picture.png
│ │ │ │ ├── profile-picture-1.jpg
│ │ │ │ ├── profile-picture-2.jpg
│ │ │ │ ├── profile-picture-3.jpg
│ │ │ │ ├── profile-picture-4.jpg
│ │ │ │ ├── profile-picture-5.jpg
│ │ │ │ ├── profile-picture-6.jpg
│ │ │ │ └── profile-picture-freelancer.jpg
│ │ │ └── themesberg.svg
│ │ ├── js
│ │ │ ├── notify.js
│ │ │ ├── volt.js
│ │ │ └── volt.min.js
│ │ └── vendor
│ │ │ ├── @fortawesome
│ │ │ └── fontawesome-free
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── css
│ │ │ │ ├── all.min.css
│ │ │ │ ├── brands.min.css
│ │ │ │ ├── fontawesome.min.css
│ │ │ │ ├── regular.min.css
│ │ │ │ ├── solid.min.css
│ │ │ │ ├── svg-with-js.min.css
│ │ │ │ └── v4-shims.min.css
│ │ │ │ ├── js
│ │ │ │ ├── all.min.js
│ │ │ │ ├── brands.min.js
│ │ │ │ ├── conflict-detection.min.js
│ │ │ │ ├── fontawesome.min.js
│ │ │ │ ├── regular.min.js
│ │ │ │ ├── solid.min.js
│ │ │ │ └── v4-shims.min.js
│ │ │ │ ├── sprites
│ │ │ │ ├── brands.svg
│ │ │ │ ├── regular.svg
│ │ │ │ └── solid.svg
│ │ │ │ ├── svgs
│ │ │ │ ├── brands
│ │ │ │ │ ├── 500px.svg
│ │ │ │ │ ├── accessible-icon.svg
│ │ │ │ │ ├── accusoft.svg
│ │ │ │ │ ├── acquisitions-incorporated.svg
│ │ │ │ │ ├── adn.svg
│ │ │ │ │ ├── adobe.svg
│ │ │ │ │ ├── adversal.svg
│ │ │ │ │ ├── affiliatetheme.svg
│ │ │ │ │ ├── airbnb.svg
│ │ │ │ │ ├── algolia.svg
│ │ │ │ │ ├── alipay.svg
│ │ │ │ │ ├── amazon-pay.svg
│ │ │ │ │ ├── amazon.svg
│ │ │ │ │ ├── amilia.svg
│ │ │ │ │ ├── android.svg
│ │ │ │ │ ├── angellist.svg
│ │ │ │ │ ├── angrycreative.svg
│ │ │ │ │ ├── angular.svg
│ │ │ │ │ ├── app-store-ios.svg
│ │ │ │ │ ├── app-store.svg
│ │ │ │ │ ├── apper.svg
│ │ │ │ │ ├── apple-pay.svg
│ │ │ │ │ ├── apple.svg
│ │ │ │ │ ├── artstation.svg
│ │ │ │ │ ├── asymmetrik.svg
│ │ │ │ │ ├── atlassian.svg
│ │ │ │ │ ├── audible.svg
│ │ │ │ │ ├── autoprefixer.svg
│ │ │ │ │ ├── avianex.svg
│ │ │ │ │ ├── aviato.svg
│ │ │ │ │ ├── aws.svg
│ │ │ │ │ ├── bandcamp.svg
│ │ │ │ │ ├── battle-net.svg
│ │ │ │ │ ├── behance-square.svg
│ │ │ │ │ ├── behance.svg
│ │ │ │ │ ├── bimobject.svg
│ │ │ │ │ ├── bitbucket.svg
│ │ │ │ │ ├── bitcoin.svg
│ │ │ │ │ ├── bity.svg
│ │ │ │ │ ├── black-tie.svg
│ │ │ │ │ ├── blackberry.svg
│ │ │ │ │ ├── blogger-b.svg
│ │ │ │ │ ├── blogger.svg
│ │ │ │ │ ├── bluetooth-b.svg
│ │ │ │ │ ├── bluetooth.svg
│ │ │ │ │ ├── bootstrap.svg
│ │ │ │ │ ├── btc.svg
│ │ │ │ │ ├── buffer.svg
│ │ │ │ │ ├── buromobelexperte.svg
│ │ │ │ │ ├── buy-n-large.svg
│ │ │ │ │ ├── buysellads.svg
│ │ │ │ │ ├── canadian-maple-leaf.svg
│ │ │ │ │ ├── cc-amazon-pay.svg
│ │ │ │ │ ├── cc-amex.svg
│ │ │ │ │ ├── cc-apple-pay.svg
│ │ │ │ │ ├── cc-diners-club.svg
│ │ │ │ │ ├── cc-discover.svg
│ │ │ │ │ ├── cc-jcb.svg
│ │ │ │ │ ├── cc-mastercard.svg
│ │ │ │ │ ├── cc-paypal.svg
│ │ │ │ │ ├── cc-stripe.svg
│ │ │ │ │ ├── cc-visa.svg
│ │ │ │ │ ├── centercode.svg
│ │ │ │ │ ├── centos.svg
│ │ │ │ │ ├── chrome.svg
│ │ │ │ │ ├── chromecast.svg
│ │ │ │ │ ├── cloudscale.svg
│ │ │ │ │ ├── cloudsmith.svg
│ │ │ │ │ ├── cloudversify.svg
│ │ │ │ │ ├── codepen.svg
│ │ │ │ │ ├── codiepie.svg
│ │ │ │ │ ├── confluence.svg
│ │ │ │ │ ├── connectdevelop.svg
│ │ │ │ │ ├── contao.svg
│ │ │ │ │ ├── cotton-bureau.svg
│ │ │ │ │ ├── cpanel.svg
│ │ │ │ │ ├── creative-commons-by.svg
│ │ │ │ │ ├── creative-commons-nc-eu.svg
│ │ │ │ │ ├── creative-commons-nc-jp.svg
│ │ │ │ │ ├── creative-commons-nc.svg
│ │ │ │ │ ├── creative-commons-nd.svg
│ │ │ │ │ ├── creative-commons-pd-alt.svg
│ │ │ │ │ ├── creative-commons-pd.svg
│ │ │ │ │ ├── creative-commons-remix.svg
│ │ │ │ │ ├── creative-commons-sa.svg
│ │ │ │ │ ├── creative-commons-sampling-plus.svg
│ │ │ │ │ ├── creative-commons-sampling.svg
│ │ │ │ │ ├── creative-commons-share.svg
│ │ │ │ │ ├── creative-commons-zero.svg
│ │ │ │ │ ├── creative-commons.svg
│ │ │ │ │ ├── critical-role.svg
│ │ │ │ │ ├── css3-alt.svg
│ │ │ │ │ ├── css3.svg
│ │ │ │ │ ├── cuttlefish.svg
│ │ │ │ │ ├── d-and-d-beyond.svg
│ │ │ │ │ ├── d-and-d.svg
│ │ │ │ │ ├── dashcube.svg
│ │ │ │ │ ├── delicious.svg
│ │ │ │ │ ├── deploydog.svg
│ │ │ │ │ ├── deskpro.svg
│ │ │ │ │ ├── dev.svg
│ │ │ │ │ ├── deviantart.svg
│ │ │ │ │ ├── dhl.svg
│ │ │ │ │ ├── diaspora.svg
│ │ │ │ │ ├── digg.svg
│ │ │ │ │ ├── digital-ocean.svg
│ │ │ │ │ ├── discord.svg
│ │ │ │ │ ├── discourse.svg
│ │ │ │ │ ├── dochub.svg
│ │ │ │ │ ├── docker.svg
│ │ │ │ │ ├── draft2digital.svg
│ │ │ │ │ ├── dribbble-square.svg
│ │ │ │ │ ├── dribbble.svg
│ │ │ │ │ ├── dropbox.svg
│ │ │ │ │ ├── drupal.svg
│ │ │ │ │ ├── dyalog.svg
│ │ │ │ │ ├── earlybirds.svg
│ │ │ │ │ ├── ebay.svg
│ │ │ │ │ ├── edge.svg
│ │ │ │ │ ├── elementor.svg
│ │ │ │ │ ├── ello.svg
│ │ │ │ │ ├── ember.svg
│ │ │ │ │ ├── empire.svg
│ │ │ │ │ ├── envira.svg
│ │ │ │ │ ├── erlang.svg
│ │ │ │ │ ├── ethereum.svg
│ │ │ │ │ ├── etsy.svg
│ │ │ │ │ ├── evernote.svg
│ │ │ │ │ ├── expeditedssl.svg
│ │ │ │ │ ├── facebook-f.svg
│ │ │ │ │ ├── facebook-messenger.svg
│ │ │ │ │ ├── facebook-square.svg
│ │ │ │ │ ├── facebook.svg
│ │ │ │ │ ├── fantasy-flight-games.svg
│ │ │ │ │ ├── fedex.svg
│ │ │ │ │ ├── fedora.svg
│ │ │ │ │ ├── figma.svg
│ │ │ │ │ ├── firefox.svg
│ │ │ │ │ ├── first-order-alt.svg
│ │ │ │ │ ├── first-order.svg
│ │ │ │ │ ├── firstdraft.svg
│ │ │ │ │ ├── flickr.svg
│ │ │ │ │ ├── flipboard.svg
│ │ │ │ │ ├── fly.svg
│ │ │ │ │ ├── font-awesome-alt.svg
│ │ │ │ │ ├── font-awesome-flag.svg
│ │ │ │ │ ├── font-awesome-logo-full.svg
│ │ │ │ │ ├── font-awesome.svg
│ │ │ │ │ ├── fonticons-fi.svg
│ │ │ │ │ ├── fonticons.svg
│ │ │ │ │ ├── fort-awesome-alt.svg
│ │ │ │ │ ├── fort-awesome.svg
│ │ │ │ │ ├── forumbee.svg
│ │ │ │ │ ├── foursquare.svg
│ │ │ │ │ ├── free-code-camp.svg
│ │ │ │ │ ├── freebsd.svg
│ │ │ │ │ ├── fulcrum.svg
│ │ │ │ │ ├── galactic-republic.svg
│ │ │ │ │ ├── galactic-senate.svg
│ │ │ │ │ ├── get-pocket.svg
│ │ │ │ │ ├── gg-circle.svg
│ │ │ │ │ ├── gg.svg
│ │ │ │ │ ├── git-alt.svg
│ │ │ │ │ ├── git-square.svg
│ │ │ │ │ ├── git.svg
│ │ │ │ │ ├── github-alt.svg
│ │ │ │ │ ├── github-square.svg
│ │ │ │ │ ├── github.svg
│ │ │ │ │ ├── gitkraken.svg
│ │ │ │ │ ├── gitlab.svg
│ │ │ │ │ ├── gitter.svg
│ │ │ │ │ ├── glide-g.svg
│ │ │ │ │ ├── glide.svg
│ │ │ │ │ ├── gofore.svg
│ │ │ │ │ ├── goodreads-g.svg
│ │ │ │ │ ├── goodreads.svg
│ │ │ │ │ ├── google-drive.svg
│ │ │ │ │ ├── google-play.svg
│ │ │ │ │ ├── google-plus-g.svg
│ │ │ │ │ ├── google-plus-square.svg
│ │ │ │ │ ├── google-plus.svg
│ │ │ │ │ ├── google-wallet.svg
│ │ │ │ │ ├── google.svg
│ │ │ │ │ ├── gratipay.svg
│ │ │ │ │ ├── grav.svg
│ │ │ │ │ ├── gripfire.svg
│ │ │ │ │ ├── grunt.svg
│ │ │ │ │ ├── gulp.svg
│ │ │ │ │ ├── hacker-news-square.svg
│ │ │ │ │ ├── hacker-news.svg
│ │ │ │ │ ├── hackerrank.svg
│ │ │ │ │ ├── hips.svg
│ │ │ │ │ ├── hire-a-helper.svg
│ │ │ │ │ ├── hooli.svg
│ │ │ │ │ ├── hornbill.svg
│ │ │ │ │ ├── hotjar.svg
│ │ │ │ │ ├── houzz.svg
│ │ │ │ │ ├── html5.svg
│ │ │ │ │ ├── hubspot.svg
│ │ │ │ │ ├── imdb.svg
│ │ │ │ │ ├── instagram.svg
│ │ │ │ │ ├── intercom.svg
│ │ │ │ │ ├── internet-explorer.svg
│ │ │ │ │ ├── invision.svg
│ │ │ │ │ ├── ioxhost.svg
│ │ │ │ │ ├── itch-io.svg
│ │ │ │ │ ├── itunes-note.svg
│ │ │ │ │ ├── itunes.svg
│ │ │ │ │ ├── java.svg
│ │ │ │ │ ├── jedi-order.svg
│ │ │ │ │ ├── jenkins.svg
│ │ │ │ │ ├── jira.svg
│ │ │ │ │ ├── joget.svg
│ │ │ │ │ ├── joomla.svg
│ │ │ │ │ ├── js-square.svg
│ │ │ │ │ ├── js.svg
│ │ │ │ │ ├── jsfiddle.svg
│ │ │ │ │ ├── kaggle.svg
│ │ │ │ │ ├── keybase.svg
│ │ │ │ │ ├── keycdn.svg
│ │ │ │ │ ├── kickstarter-k.svg
│ │ │ │ │ ├── kickstarter.svg
│ │ │ │ │ ├── korvue.svg
│ │ │ │ │ ├── laravel.svg
│ │ │ │ │ ├── lastfm-square.svg
│ │ │ │ │ ├── lastfm.svg
│ │ │ │ │ ├── leanpub.svg
│ │ │ │ │ ├── less.svg
│ │ │ │ │ ├── line.svg
│ │ │ │ │ ├── linkedin-in.svg
│ │ │ │ │ ├── linkedin.svg
│ │ │ │ │ ├── linode.svg
│ │ │ │ │ ├── linux.svg
│ │ │ │ │ ├── lyft.svg
│ │ │ │ │ ├── magento.svg
│ │ │ │ │ ├── mailchimp.svg
│ │ │ │ │ ├── mandalorian.svg
│ │ │ │ │ ├── markdown.svg
│ │ │ │ │ ├── mastodon.svg
│ │ │ │ │ ├── maxcdn.svg
│ │ │ │ │ ├── mdb.svg
│ │ │ │ │ ├── medapps.svg
│ │ │ │ │ ├── medium-m.svg
│ │ │ │ │ ├── medium.svg
│ │ │ │ │ ├── medrt.svg
│ │ │ │ │ ├── meetup.svg
│ │ │ │ │ ├── megaport.svg
│ │ │ │ │ ├── mendeley.svg
│ │ │ │ │ ├── microsoft.svg
│ │ │ │ │ ├── mix.svg
│ │ │ │ │ ├── mixcloud.svg
│ │ │ │ │ ├── mizuni.svg
│ │ │ │ │ ├── modx.svg
│ │ │ │ │ ├── monero.svg
│ │ │ │ │ ├── napster.svg
│ │ │ │ │ ├── neos.svg
│ │ │ │ │ ├── nimblr.svg
│ │ │ │ │ ├── node-js.svg
│ │ │ │ │ ├── node.svg
│ │ │ │ │ ├── npm.svg
│ │ │ │ │ ├── ns8.svg
│ │ │ │ │ ├── nutritionix.svg
│ │ │ │ │ ├── odnoklassniki-square.svg
│ │ │ │ │ ├── odnoklassniki.svg
│ │ │ │ │ ├── old-republic.svg
│ │ │ │ │ ├── opencart.svg
│ │ │ │ │ ├── openid.svg
│ │ │ │ │ ├── opera.svg
│ │ │ │ │ ├── optin-monster.svg
│ │ │ │ │ ├── orcid.svg
│ │ │ │ │ ├── osi.svg
│ │ │ │ │ ├── page4.svg
│ │ │ │ │ ├── pagelines.svg
│ │ │ │ │ ├── palfed.svg
│ │ │ │ │ ├── patreon.svg
│ │ │ │ │ ├── paypal.svg
│ │ │ │ │ ├── penny-arcade.svg
│ │ │ │ │ ├── periscope.svg
│ │ │ │ │ ├── phabricator.svg
│ │ │ │ │ ├── phoenix-framework.svg
│ │ │ │ │ ├── phoenix-squadron.svg
│ │ │ │ │ ├── php.svg
│ │ │ │ │ ├── pied-piper-alt.svg
│ │ │ │ │ ├── pied-piper-hat.svg
│ │ │ │ │ ├── pied-piper-pp.svg
│ │ │ │ │ ├── pied-piper.svg
│ │ │ │ │ ├── pinterest-p.svg
│ │ │ │ │ ├── pinterest-square.svg
│ │ │ │ │ ├── pinterest.svg
│ │ │ │ │ ├── playstation.svg
│ │ │ │ │ ├── product-hunt.svg
│ │ │ │ │ ├── pushed.svg
│ │ │ │ │ ├── python.svg
│ │ │ │ │ ├── qq.svg
│ │ │ │ │ ├── quinscape.svg
│ │ │ │ │ ├── quora.svg
│ │ │ │ │ ├── r-project.svg
│ │ │ │ │ ├── raspberry-pi.svg
│ │ │ │ │ ├── ravelry.svg
│ │ │ │ │ ├── react.svg
│ │ │ │ │ ├── reacteurope.svg
│ │ │ │ │ ├── readme.svg
│ │ │ │ │ ├── rebel.svg
│ │ │ │ │ ├── red-river.svg
│ │ │ │ │ ├── reddit-alien.svg
│ │ │ │ │ ├── reddit-square.svg
│ │ │ │ │ ├── reddit.svg
│ │ │ │ │ ├── redhat.svg
│ │ │ │ │ ├── renren.svg
│ │ │ │ │ ├── replyd.svg
│ │ │ │ │ ├── researchgate.svg
│ │ │ │ │ ├── resolving.svg
│ │ │ │ │ ├── rev.svg
│ │ │ │ │ ├── rocketchat.svg
│ │ │ │ │ ├── rockrms.svg
│ │ │ │ │ ├── safari.svg
│ │ │ │ │ ├── salesforce.svg
│ │ │ │ │ ├── sass.svg
│ │ │ │ │ ├── schlix.svg
│ │ │ │ │ ├── scribd.svg
│ │ │ │ │ ├── searchengin.svg
│ │ │ │ │ ├── sellcast.svg
│ │ │ │ │ ├── sellsy.svg
│ │ │ │ │ ├── servicestack.svg
│ │ │ │ │ ├── shirtsinbulk.svg
│ │ │ │ │ ├── shopware.svg
│ │ │ │ │ ├── simplybuilt.svg
│ │ │ │ │ ├── sistrix.svg
│ │ │ │ │ ├── sith.svg
│ │ │ │ │ ├── sketch.svg
│ │ │ │ │ ├── skyatlas.svg
│ │ │ │ │ ├── skype.svg
│ │ │ │ │ ├── slack-hash.svg
│ │ │ │ │ ├── slack.svg
│ │ │ │ │ ├── slideshare.svg
│ │ │ │ │ ├── snapchat-ghost.svg
│ │ │ │ │ ├── snapchat-square.svg
│ │ │ │ │ ├── snapchat.svg
│ │ │ │ │ ├── soundcloud.svg
│ │ │ │ │ ├── sourcetree.svg
│ │ │ │ │ ├── speakap.svg
│ │ │ │ │ ├── speaker-deck.svg
│ │ │ │ │ ├── spotify.svg
│ │ │ │ │ ├── squarespace.svg
│ │ │ │ │ ├── stack-exchange.svg
│ │ │ │ │ ├── stack-overflow.svg
│ │ │ │ │ ├── stackpath.svg
│ │ │ │ │ ├── staylinked.svg
│ │ │ │ │ ├── steam-square.svg
│ │ │ │ │ ├── steam-symbol.svg
│ │ │ │ │ ├── steam.svg
│ │ │ │ │ ├── sticker-mule.svg
│ │ │ │ │ ├── strava.svg
│ │ │ │ │ ├── stripe-s.svg
│ │ │ │ │ ├── stripe.svg
│ │ │ │ │ ├── studiovinari.svg
│ │ │ │ │ ├── stumbleupon-circle.svg
│ │ │ │ │ ├── stumbleupon.svg
│ │ │ │ │ ├── superpowers.svg
│ │ │ │ │ ├── supple.svg
│ │ │ │ │ ├── suse.svg
│ │ │ │ │ ├── swift.svg
│ │ │ │ │ ├── symfony.svg
│ │ │ │ │ ├── teamspeak.svg
│ │ │ │ │ ├── telegram-plane.svg
│ │ │ │ │ ├── telegram.svg
│ │ │ │ │ ├── tencent-weibo.svg
│ │ │ │ │ ├── the-red-yeti.svg
│ │ │ │ │ ├── themeco.svg
│ │ │ │ │ ├── themeisle.svg
│ │ │ │ │ ├── think-peaks.svg
│ │ │ │ │ ├── trade-federation.svg
│ │ │ │ │ ├── trello.svg
│ │ │ │ │ ├── tripadvisor.svg
│ │ │ │ │ ├── tumblr-square.svg
│ │ │ │ │ ├── tumblr.svg
│ │ │ │ │ ├── twitch.svg
│ │ │ │ │ ├── twitter-square.svg
│ │ │ │ │ ├── twitter.svg
│ │ │ │ │ ├── typo3.svg
│ │ │ │ │ ├── uber.svg
│ │ │ │ │ ├── ubuntu.svg
│ │ │ │ │ ├── uikit.svg
│ │ │ │ │ ├── umbraco.svg
│ │ │ │ │ ├── uniregistry.svg
│ │ │ │ │ ├── untappd.svg
│ │ │ │ │ ├── ups.svg
│ │ │ │ │ ├── usb.svg
│ │ │ │ │ ├── usps.svg
│ │ │ │ │ ├── ussunnah.svg
│ │ │ │ │ ├── vaadin.svg
│ │ │ │ │ ├── viacoin.svg
│ │ │ │ │ ├── viadeo-square.svg
│ │ │ │ │ ├── viadeo.svg
│ │ │ │ │ ├── viber.svg
│ │ │ │ │ ├── vimeo-square.svg
│ │ │ │ │ ├── vimeo-v.svg
│ │ │ │ │ ├── vimeo.svg
│ │ │ │ │ ├── vine.svg
│ │ │ │ │ ├── vk.svg
│ │ │ │ │ ├── vnv.svg
│ │ │ │ │ ├── vuejs.svg
│ │ │ │ │ ├── waze.svg
│ │ │ │ │ ├── weebly.svg
│ │ │ │ │ ├── weibo.svg
│ │ │ │ │ ├── weixin.svg
│ │ │ │ │ ├── whatsapp-square.svg
│ │ │ │ │ ├── whatsapp.svg
│ │ │ │ │ ├── whmcs.svg
│ │ │ │ │ ├── wikipedia-w.svg
│ │ │ │ │ ├── windows.svg
│ │ │ │ │ ├── wix.svg
│ │ │ │ │ ├── wizards-of-the-coast.svg
│ │ │ │ │ ├── wolf-pack-battalion.svg
│ │ │ │ │ ├── wordpress-simple.svg
│ │ │ │ │ ├── wordpress.svg
│ │ │ │ │ ├── wpbeginner.svg
│ │ │ │ │ ├── wpexplorer.svg
│ │ │ │ │ ├── wpforms.svg
│ │ │ │ │ ├── wpressr.svg
│ │ │ │ │ ├── xbox.svg
│ │ │ │ │ ├── xing-square.svg
│ │ │ │ │ ├── xing.svg
│ │ │ │ │ ├── y-combinator.svg
│ │ │ │ │ ├── yahoo.svg
│ │ │ │ │ ├── yammer.svg
│ │ │ │ │ ├── yandex-international.svg
│ │ │ │ │ ├── yandex.svg
│ │ │ │ │ ├── yarn.svg
│ │ │ │ │ ├── yelp.svg
│ │ │ │ │ ├── yoast.svg
│ │ │ │ │ ├── youtube-square.svg
│ │ │ │ │ ├── youtube.svg
│ │ │ │ │ └── zhihu.svg
│ │ │ │ ├── regular
│ │ │ │ │ ├── address-book.svg
│ │ │ │ │ ├── address-card.svg
│ │ │ │ │ ├── angry.svg
│ │ │ │ │ ├── arrow-alt-circle-down.svg
│ │ │ │ │ ├── arrow-alt-circle-left.svg
│ │ │ │ │ ├── arrow-alt-circle-right.svg
│ │ │ │ │ ├── arrow-alt-circle-up.svg
│ │ │ │ │ ├── bell-slash.svg
│ │ │ │ │ ├── bell.svg
│ │ │ │ │ ├── bookmark.svg
│ │ │ │ │ ├── building.svg
│ │ │ │ │ ├── calendar-alt.svg
│ │ │ │ │ ├── calendar-check.svg
│ │ │ │ │ ├── calendar-minus.svg
│ │ │ │ │ ├── calendar-plus.svg
│ │ │ │ │ ├── calendar-times.svg
│ │ │ │ │ ├── calendar.svg
│ │ │ │ │ ├── caret-square-down.svg
│ │ │ │ │ ├── caret-square-left.svg
│ │ │ │ │ ├── caret-square-right.svg
│ │ │ │ │ ├── caret-square-up.svg
│ │ │ │ │ ├── chart-bar.svg
│ │ │ │ │ ├── check-circle.svg
│ │ │ │ │ ├── check-square.svg
│ │ │ │ │ ├── circle.svg
│ │ │ │ │ ├── clipboard.svg
│ │ │ │ │ ├── clock.svg
│ │ │ │ │ ├── clone.svg
│ │ │ │ │ ├── closed-captioning.svg
│ │ │ │ │ ├── comment-alt.svg
│ │ │ │ │ ├── comment-dots.svg
│ │ │ │ │ ├── comment.svg
│ │ │ │ │ ├── comments.svg
│ │ │ │ │ ├── compass.svg
│ │ │ │ │ ├── copy.svg
│ │ │ │ │ ├── copyright.svg
│ │ │ │ │ ├── credit-card.svg
│ │ │ │ │ ├── dizzy.svg
│ │ │ │ │ ├── dot-circle.svg
│ │ │ │ │ ├── edit.svg
│ │ │ │ │ ├── envelope-open.svg
│ │ │ │ │ ├── envelope.svg
│ │ │ │ │ ├── eye-slash.svg
│ │ │ │ │ ├── eye.svg
│ │ │ │ │ ├── file-alt.svg
│ │ │ │ │ ├── file-archive.svg
│ │ │ │ │ ├── file-audio.svg
│ │ │ │ │ ├── file-code.svg
│ │ │ │ │ ├── file-excel.svg
│ │ │ │ │ ├── file-image.svg
│ │ │ │ │ ├── file-pdf.svg
│ │ │ │ │ ├── file-powerpoint.svg
│ │ │ │ │ ├── file-video.svg
│ │ │ │ │ ├── file-word.svg
│ │ │ │ │ ├── file.svg
│ │ │ │ │ ├── flag.svg
│ │ │ │ │ ├── flushed.svg
│ │ │ │ │ ├── folder-open.svg
│ │ │ │ │ ├── folder.svg
│ │ │ │ │ ├── font-awesome-logo-full.svg
│ │ │ │ │ ├── frown-open.svg
│ │ │ │ │ ├── frown.svg
│ │ │ │ │ ├── futbol.svg
│ │ │ │ │ ├── gem.svg
│ │ │ │ │ ├── grimace.svg
│ │ │ │ │ ├── grin-alt.svg
│ │ │ │ │ ├── grin-beam-sweat.svg
│ │ │ │ │ ├── grin-beam.svg
│ │ │ │ │ ├── grin-hearts.svg
│ │ │ │ │ ├── grin-squint-tears.svg
│ │ │ │ │ ├── grin-squint.svg
│ │ │ │ │ ├── grin-stars.svg
│ │ │ │ │ ├── grin-tears.svg
│ │ │ │ │ ├── grin-tongue-squint.svg
│ │ │ │ │ ├── grin-tongue-wink.svg
│ │ │ │ │ ├── grin-tongue.svg
│ │ │ │ │ ├── grin-wink.svg
│ │ │ │ │ ├── grin.svg
│ │ │ │ │ ├── hand-lizard.svg
│ │ │ │ │ ├── hand-paper.svg
│ │ │ │ │ ├── hand-peace.svg
│ │ │ │ │ ├── hand-point-down.svg
│ │ │ │ │ ├── hand-point-left.svg
│ │ │ │ │ ├── hand-point-right.svg
│ │ │ │ │ ├── hand-point-up.svg
│ │ │ │ │ ├── hand-pointer.svg
│ │ │ │ │ ├── hand-rock.svg
│ │ │ │ │ ├── hand-scissors.svg
│ │ │ │ │ ├── hand-spock.svg
│ │ │ │ │ ├── handshake.svg
│ │ │ │ │ ├── hdd.svg
│ │ │ │ │ ├── heart.svg
│ │ │ │ │ ├── hospital.svg
│ │ │ │ │ ├── hourglass.svg
│ │ │ │ │ ├── id-badge.svg
│ │ │ │ │ ├── id-card.svg
│ │ │ │ │ ├── image.svg
│ │ │ │ │ ├── images.svg
│ │ │ │ │ ├── keyboard.svg
│ │ │ │ │ ├── kiss-beam.svg
│ │ │ │ │ ├── kiss-wink-heart.svg
│ │ │ │ │ ├── kiss.svg
│ │ │ │ │ ├── laugh-beam.svg
│ │ │ │ │ ├── laugh-squint.svg
│ │ │ │ │ ├── laugh-wink.svg
│ │ │ │ │ ├── laugh.svg
│ │ │ │ │ ├── lemon.svg
│ │ │ │ │ ├── life-ring.svg
│ │ │ │ │ ├── lightbulb.svg
│ │ │ │ │ ├── list-alt.svg
│ │ │ │ │ ├── map.svg
│ │ │ │ │ ├── meh-blank.svg
│ │ │ │ │ ├── meh-rolling-eyes.svg
│ │ │ │ │ ├── meh.svg
│ │ │ │ │ ├── minus-square.svg
│ │ │ │ │ ├── money-bill-alt.svg
│ │ │ │ │ ├── moon.svg
│ │ │ │ │ ├── newspaper.svg
│ │ │ │ │ ├── object-group.svg
│ │ │ │ │ ├── object-ungroup.svg
│ │ │ │ │ ├── paper-plane.svg
│ │ │ │ │ ├── pause-circle.svg
│ │ │ │ │ ├── play-circle.svg
│ │ │ │ │ ├── plus-square.svg
│ │ │ │ │ ├── question-circle.svg
│ │ │ │ │ ├── registered.svg
│ │ │ │ │ ├── sad-cry.svg
│ │ │ │ │ ├── sad-tear.svg
│ │ │ │ │ ├── save.svg
│ │ │ │ │ ├── share-square.svg
│ │ │ │ │ ├── smile-beam.svg
│ │ │ │ │ ├── smile-wink.svg
│ │ │ │ │ ├── smile.svg
│ │ │ │ │ ├── snowflake.svg
│ │ │ │ │ ├── square.svg
│ │ │ │ │ ├── star-half.svg
│ │ │ │ │ ├── star.svg
│ │ │ │ │ ├── sticky-note.svg
│ │ │ │ │ ├── stop-circle.svg
│ │ │ │ │ ├── sun.svg
│ │ │ │ │ ├── surprise.svg
│ │ │ │ │ ├── thumbs-down.svg
│ │ │ │ │ ├── thumbs-up.svg
│ │ │ │ │ ├── times-circle.svg
│ │ │ │ │ ├── tired.svg
│ │ │ │ │ ├── trash-alt.svg
│ │ │ │ │ ├── user-circle.svg
│ │ │ │ │ ├── user.svg
│ │ │ │ │ ├── window-close.svg
│ │ │ │ │ ├── window-maximize.svg
│ │ │ │ │ ├── window-minimize.svg
│ │ │ │ │ └── window-restore.svg
│ │ │ │ └── solid
│ │ │ │ │ ├── ad.svg
│ │ │ │ │ ├── address-book.svg
│ │ │ │ │ ├── address-card.svg
│ │ │ │ │ ├── adjust.svg
│ │ │ │ │ ├── air-freshener.svg
│ │ │ │ │ ├── align-center.svg
│ │ │ │ │ ├── align-justify.svg
│ │ │ │ │ ├── align-left.svg
│ │ │ │ │ ├── align-right.svg
│ │ │ │ │ ├── allergies.svg
│ │ │ │ │ ├── ambulance.svg
│ │ │ │ │ ├── american-sign-language-interpreting.svg
│ │ │ │ │ ├── anchor.svg
│ │ │ │ │ ├── angle-double-down.svg
│ │ │ │ │ ├── angle-double-left.svg
│ │ │ │ │ ├── angle-double-right.svg
│ │ │ │ │ ├── angle-double-up.svg
│ │ │ │ │ ├── angle-down.svg
│ │ │ │ │ ├── angle-left.svg
│ │ │ │ │ ├── angle-right.svg
│ │ │ │ │ ├── angle-up.svg
│ │ │ │ │ ├── angry.svg
│ │ │ │ │ ├── ankh.svg
│ │ │ │ │ ├── apple-alt.svg
│ │ │ │ │ ├── archive.svg
│ │ │ │ │ ├── archway.svg
│ │ │ │ │ ├── arrow-alt-circle-down.svg
│ │ │ │ │ ├── arrow-alt-circle-left.svg
│ │ │ │ │ ├── arrow-alt-circle-right.svg
│ │ │ │ │ ├── arrow-alt-circle-up.svg
│ │ │ │ │ ├── arrow-circle-down.svg
│ │ │ │ │ ├── arrow-circle-left.svg
│ │ │ │ │ ├── arrow-circle-right.svg
│ │ │ │ │ ├── arrow-circle-up.svg
│ │ │ │ │ ├── arrow-down.svg
│ │ │ │ │ ├── arrow-left.svg
│ │ │ │ │ ├── arrow-right.svg
│ │ │ │ │ ├── arrow-up.svg
│ │ │ │ │ ├── arrows-alt-h.svg
│ │ │ │ │ ├── arrows-alt-v.svg
│ │ │ │ │ ├── arrows-alt.svg
│ │ │ │ │ ├── assistive-listening-systems.svg
│ │ │ │ │ ├── asterisk.svg
│ │ │ │ │ ├── at.svg
│ │ │ │ │ ├── atlas.svg
│ │ │ │ │ ├── atom.svg
│ │ │ │ │ ├── audio-description.svg
│ │ │ │ │ ├── award.svg
│ │ │ │ │ ├── baby-carriage.svg
│ │ │ │ │ ├── baby.svg
│ │ │ │ │ ├── backspace.svg
│ │ │ │ │ ├── backward.svg
│ │ │ │ │ ├── bacon.svg
│ │ │ │ │ ├── balance-scale-left.svg
│ │ │ │ │ ├── balance-scale-right.svg
│ │ │ │ │ ├── balance-scale.svg
│ │ │ │ │ ├── ban.svg
│ │ │ │ │ ├── band-aid.svg
│ │ │ │ │ ├── barcode.svg
│ │ │ │ │ ├── bars.svg
│ │ │ │ │ ├── baseball-ball.svg
│ │ │ │ │ ├── basketball-ball.svg
│ │ │ │ │ ├── bath.svg
│ │ │ │ │ ├── battery-empty.svg
│ │ │ │ │ ├── battery-full.svg
│ │ │ │ │ ├── battery-half.svg
│ │ │ │ │ ├── battery-quarter.svg
│ │ │ │ │ ├── battery-three-quarters.svg
│ │ │ │ │ ├── bed.svg
│ │ │ │ │ ├── beer.svg
│ │ │ │ │ ├── bell-slash.svg
│ │ │ │ │ ├── bell.svg
│ │ │ │ │ ├── bezier-curve.svg
│ │ │ │ │ ├── bible.svg
│ │ │ │ │ ├── bicycle.svg
│ │ │ │ │ ├── biking.svg
│ │ │ │ │ ├── binoculars.svg
│ │ │ │ │ ├── biohazard.svg
│ │ │ │ │ ├── birthday-cake.svg
│ │ │ │ │ ├── blender-phone.svg
│ │ │ │ │ ├── blender.svg
│ │ │ │ │ ├── blind.svg
│ │ │ │ │ ├── blog.svg
│ │ │ │ │ ├── bold.svg
│ │ │ │ │ ├── bolt.svg
│ │ │ │ │ ├── bomb.svg
│ │ │ │ │ ├── bone.svg
│ │ │ │ │ ├── bong.svg
│ │ │ │ │ ├── book-dead.svg
│ │ │ │ │ ├── book-medical.svg
│ │ │ │ │ ├── book-open.svg
│ │ │ │ │ ├── book-reader.svg
│ │ │ │ │ ├── book.svg
│ │ │ │ │ ├── bookmark.svg
│ │ │ │ │ ├── border-all.svg
│ │ │ │ │ ├── border-none.svg
│ │ │ │ │ ├── border-style.svg
│ │ │ │ │ ├── bowling-ball.svg
│ │ │ │ │ ├── box-open.svg
│ │ │ │ │ ├── box.svg
│ │ │ │ │ ├── boxes.svg
│ │ │ │ │ ├── braille.svg
│ │ │ │ │ ├── brain.svg
│ │ │ │ │ ├── bread-slice.svg
│ │ │ │ │ ├── briefcase-medical.svg
│ │ │ │ │ ├── briefcase.svg
│ │ │ │ │ ├── broadcast-tower.svg
│ │ │ │ │ ├── broom.svg
│ │ │ │ │ ├── brush.svg
│ │ │ │ │ ├── bug.svg
│ │ │ │ │ ├── building.svg
│ │ │ │ │ ├── bullhorn.svg
│ │ │ │ │ ├── bullseye.svg
│ │ │ │ │ ├── burn.svg
│ │ │ │ │ ├── bus-alt.svg
│ │ │ │ │ ├── bus.svg
│ │ │ │ │ ├── business-time.svg
│ │ │ │ │ ├── calculator.svg
│ │ │ │ │ ├── calendar-alt.svg
│ │ │ │ │ ├── calendar-check.svg
│ │ │ │ │ ├── calendar-day.svg
│ │ │ │ │ ├── calendar-minus.svg
│ │ │ │ │ ├── calendar-plus.svg
│ │ │ │ │ ├── calendar-times.svg
│ │ │ │ │ ├── calendar-week.svg
│ │ │ │ │ ├── calendar.svg
│ │ │ │ │ ├── camera-retro.svg
│ │ │ │ │ ├── camera.svg
│ │ │ │ │ ├── campground.svg
│ │ │ │ │ ├── candy-cane.svg
│ │ │ │ │ ├── cannabis.svg
│ │ │ │ │ ├── capsules.svg
│ │ │ │ │ ├── car-alt.svg
│ │ │ │ │ ├── car-battery.svg
│ │ │ │ │ ├── car-crash.svg
│ │ │ │ │ ├── car-side.svg
│ │ │ │ │ ├── car.svg
│ │ │ │ │ ├── caret-down.svg
│ │ │ │ │ ├── caret-left.svg
│ │ │ │ │ ├── caret-right.svg
│ │ │ │ │ ├── caret-square-down.svg
│ │ │ │ │ ├── caret-square-left.svg
│ │ │ │ │ ├── caret-square-right.svg
│ │ │ │ │ ├── caret-square-up.svg
│ │ │ │ │ ├── caret-up.svg
│ │ │ │ │ ├── carrot.svg
│ │ │ │ │ ├── cart-arrow-down.svg
│ │ │ │ │ ├── cart-plus.svg
│ │ │ │ │ ├── cash-register.svg
│ │ │ │ │ ├── cat.svg
│ │ │ │ │ ├── certificate.svg
│ │ │ │ │ ├── chair.svg
│ │ │ │ │ ├── chalkboard-teacher.svg
│ │ │ │ │ ├── chalkboard.svg
│ │ │ │ │ ├── charging-station.svg
│ │ │ │ │ ├── chart-area.svg
│ │ │ │ │ ├── chart-bar.svg
│ │ │ │ │ ├── chart-line.svg
│ │ │ │ │ ├── chart-pie.svg
│ │ │ │ │ ├── check-circle.svg
│ │ │ │ │ ├── check-double.svg
│ │ │ │ │ ├── check-square.svg
│ │ │ │ │ ├── check.svg
│ │ │ │ │ ├── cheese.svg
│ │ │ │ │ ├── chess-bishop.svg
│ │ │ │ │ ├── chess-board.svg
│ │ │ │ │ ├── chess-king.svg
│ │ │ │ │ ├── chess-knight.svg
│ │ │ │ │ ├── chess-pawn.svg
│ │ │ │ │ ├── chess-queen.svg
│ │ │ │ │ ├── chess-rook.svg
│ │ │ │ │ ├── chess.svg
│ │ │ │ │ ├── chevron-circle-down.svg
│ │ │ │ │ ├── chevron-circle-left.svg
│ │ │ │ │ ├── chevron-circle-right.svg
│ │ │ │ │ ├── chevron-circle-up.svg
│ │ │ │ │ ├── chevron-down.svg
│ │ │ │ │ ├── chevron-left.svg
│ │ │ │ │ ├── chevron-right.svg
│ │ │ │ │ ├── chevron-up.svg
│ │ │ │ │ ├── child.svg
│ │ │ │ │ ├── church.svg
│ │ │ │ │ ├── circle-notch.svg
│ │ │ │ │ ├── circle.svg
│ │ │ │ │ ├── city.svg
│ │ │ │ │ ├── clinic-medical.svg
│ │ │ │ │ ├── clipboard-check.svg
│ │ │ │ │ ├── clipboard-list.svg
│ │ │ │ │ ├── clipboard.svg
│ │ │ │ │ ├── clock.svg
│ │ │ │ │ ├── clone.svg
│ │ │ │ │ ├── closed-captioning.svg
│ │ │ │ │ ├── cloud-download-alt.svg
│ │ │ │ │ ├── cloud-meatball.svg
│ │ │ │ │ ├── cloud-moon-rain.svg
│ │ │ │ │ ├── cloud-moon.svg
│ │ │ │ │ ├── cloud-rain.svg
│ │ │ │ │ ├── cloud-showers-heavy.svg
│ │ │ │ │ ├── cloud-sun-rain.svg
│ │ │ │ │ ├── cloud-sun.svg
│ │ │ │ │ ├── cloud-upload-alt.svg
│ │ │ │ │ ├── cloud.svg
│ │ │ │ │ ├── cocktail.svg
│ │ │ │ │ ├── code-branch.svg
│ │ │ │ │ ├── code.svg
│ │ │ │ │ ├── coffee.svg
│ │ │ │ │ ├── cog.svg
│ │ │ │ │ ├── cogs.svg
│ │ │ │ │ ├── coins.svg
│ │ │ │ │ ├── columns.svg
│ │ │ │ │ ├── comment-alt.svg
│ │ │ │ │ ├── comment-dollar.svg
│ │ │ │ │ ├── comment-dots.svg
│ │ │ │ │ ├── comment-medical.svg
│ │ │ │ │ ├── comment-slash.svg
│ │ │ │ │ ├── comment.svg
│ │ │ │ │ ├── comments-dollar.svg
│ │ │ │ │ ├── comments.svg
│ │ │ │ │ ├── compact-disc.svg
│ │ │ │ │ ├── compass.svg
│ │ │ │ │ ├── compress-arrows-alt.svg
│ │ │ │ │ ├── compress.svg
│ │ │ │ │ ├── concierge-bell.svg
│ │ │ │ │ ├── cookie-bite.svg
│ │ │ │ │ ├── cookie.svg
│ │ │ │ │ ├── copy.svg
│ │ │ │ │ ├── copyright.svg
│ │ │ │ │ ├── couch.svg
│ │ │ │ │ ├── credit-card.svg
│ │ │ │ │ ├── crop-alt.svg
│ │ │ │ │ ├── crop.svg
│ │ │ │ │ ├── cross.svg
│ │ │ │ │ ├── crosshairs.svg
│ │ │ │ │ ├── crow.svg
│ │ │ │ │ ├── crown.svg
│ │ │ │ │ ├── crutch.svg
│ │ │ │ │ ├── cube.svg
│ │ │ │ │ ├── cubes.svg
│ │ │ │ │ ├── cut.svg
│ │ │ │ │ ├── database.svg
│ │ │ │ │ ├── deaf.svg
│ │ │ │ │ ├── democrat.svg
│ │ │ │ │ ├── desktop.svg
│ │ │ │ │ ├── dharmachakra.svg
│ │ │ │ │ ├── diagnoses.svg
│ │ │ │ │ ├── dice-d20.svg
│ │ │ │ │ ├── dice-d6.svg
│ │ │ │ │ ├── dice-five.svg
│ │ │ │ │ ├── dice-four.svg
│ │ │ │ │ ├── dice-one.svg
│ │ │ │ │ ├── dice-six.svg
│ │ │ │ │ ├── dice-three.svg
│ │ │ │ │ ├── dice-two.svg
│ │ │ │ │ ├── dice.svg
│ │ │ │ │ ├── digital-tachograph.svg
│ │ │ │ │ ├── directions.svg
│ │ │ │ │ ├── divide.svg
│ │ │ │ │ ├── dizzy.svg
│ │ │ │ │ ├── dna.svg
│ │ │ │ │ ├── dog.svg
│ │ │ │ │ ├── dollar-sign.svg
│ │ │ │ │ ├── dolly-flatbed.svg
│ │ │ │ │ ├── dolly.svg
│ │ │ │ │ ├── donate.svg
│ │ │ │ │ ├── door-closed.svg
│ │ │ │ │ ├── door-open.svg
│ │ │ │ │ ├── dot-circle.svg
│ │ │ │ │ ├── dove.svg
│ │ │ │ │ ├── download.svg
│ │ │ │ │ ├── drafting-compass.svg
│ │ │ │ │ ├── dragon.svg
│ │ │ │ │ ├── draw-polygon.svg
│ │ │ │ │ ├── drum-steelpan.svg
│ │ │ │ │ ├── drum.svg
│ │ │ │ │ ├── drumstick-bite.svg
│ │ │ │ │ ├── dumbbell.svg
│ │ │ │ │ ├── dumpster-fire.svg
│ │ │ │ │ ├── dumpster.svg
│ │ │ │ │ ├── dungeon.svg
│ │ │ │ │ ├── edit.svg
│ │ │ │ │ ├── egg.svg
│ │ │ │ │ ├── eject.svg
│ │ │ │ │ ├── ellipsis-h.svg
│ │ │ │ │ ├── ellipsis-v.svg
│ │ │ │ │ ├── envelope-open-text.svg
│ │ │ │ │ ├── envelope-open.svg
│ │ │ │ │ ├── envelope-square.svg
│ │ │ │ │ ├── envelope.svg
│ │ │ │ │ ├── equals.svg
│ │ │ │ │ ├── eraser.svg
│ │ │ │ │ ├── ethernet.svg
│ │ │ │ │ ├── euro-sign.svg
│ │ │ │ │ ├── exchange-alt.svg
│ │ │ │ │ ├── exclamation-circle.svg
│ │ │ │ │ ├── exclamation-triangle.svg
│ │ │ │ │ ├── exclamation.svg
│ │ │ │ │ ├── expand-arrows-alt.svg
│ │ │ │ │ ├── expand.svg
│ │ │ │ │ ├── external-link-alt.svg
│ │ │ │ │ ├── external-link-square-alt.svg
│ │ │ │ │ ├── eye-dropper.svg
│ │ │ │ │ ├── eye-slash.svg
│ │ │ │ │ ├── eye.svg
│ │ │ │ │ ├── fan.svg
│ │ │ │ │ ├── fast-backward.svg
│ │ │ │ │ ├── fast-forward.svg
│ │ │ │ │ ├── fax.svg
│ │ │ │ │ ├── feather-alt.svg
│ │ │ │ │ ├── feather.svg
│ │ │ │ │ ├── female.svg
│ │ │ │ │ ├── fighter-jet.svg
│ │ │ │ │ ├── file-alt.svg
│ │ │ │ │ ├── file-archive.svg
│ │ │ │ │ ├── file-audio.svg
│ │ │ │ │ ├── file-code.svg
│ │ │ │ │ ├── file-contract.svg
│ │ │ │ │ ├── file-csv.svg
│ │ │ │ │ ├── file-download.svg
│ │ │ │ │ ├── file-excel.svg
│ │ │ │ │ ├── file-export.svg
│ │ │ │ │ ├── file-image.svg
│ │ │ │ │ ├── file-import.svg
│ │ │ │ │ ├── file-invoice-dollar.svg
│ │ │ │ │ ├── file-invoice.svg
│ │ │ │ │ ├── file-medical-alt.svg
│ │ │ │ │ ├── file-medical.svg
│ │ │ │ │ ├── file-pdf.svg
│ │ │ │ │ ├── file-powerpoint.svg
│ │ │ │ │ ├── file-prescription.svg
│ │ │ │ │ ├── file-signature.svg
│ │ │ │ │ ├── file-upload.svg
│ │ │ │ │ ├── file-video.svg
│ │ │ │ │ ├── file-word.svg
│ │ │ │ │ ├── file.svg
│ │ │ │ │ ├── fill-drip.svg
│ │ │ │ │ ├── fill.svg
│ │ │ │ │ ├── film.svg
│ │ │ │ │ ├── filter.svg
│ │ │ │ │ ├── fingerprint.svg
│ │ │ │ │ ├── fire-alt.svg
│ │ │ │ │ ├── fire-extinguisher.svg
│ │ │ │ │ ├── fire.svg
│ │ │ │ │ ├── first-aid.svg
│ │ │ │ │ ├── fish.svg
│ │ │ │ │ ├── fist-raised.svg
│ │ │ │ │ ├── flag-checkered.svg
│ │ │ │ │ ├── flag-usa.svg
│ │ │ │ │ ├── flag.svg
│ │ │ │ │ ├── flask.svg
│ │ │ │ │ ├── flushed.svg
│ │ │ │ │ ├── folder-minus.svg
│ │ │ │ │ ├── folder-open.svg
│ │ │ │ │ ├── folder-plus.svg
│ │ │ │ │ ├── folder.svg
│ │ │ │ │ ├── font-awesome-logo-full.svg
│ │ │ │ │ ├── font.svg
│ │ │ │ │ ├── football-ball.svg
│ │ │ │ │ ├── forward.svg
│ │ │ │ │ ├── frog.svg
│ │ │ │ │ ├── frown-open.svg
│ │ │ │ │ ├── frown.svg
│ │ │ │ │ ├── funnel-dollar.svg
│ │ │ │ │ ├── futbol.svg
│ │ │ │ │ ├── gamepad.svg
│ │ │ │ │ ├── gas-pump.svg
│ │ │ │ │ ├── gavel.svg
│ │ │ │ │ ├── gem.svg
│ │ │ │ │ ├── genderless.svg
│ │ │ │ │ ├── ghost.svg
│ │ │ │ │ ├── gift.svg
│ │ │ │ │ ├── gifts.svg
│ │ │ │ │ ├── glass-cheers.svg
│ │ │ │ │ ├── glass-martini-alt.svg
│ │ │ │ │ ├── glass-martini.svg
│ │ │ │ │ ├── glass-whiskey.svg
│ │ │ │ │ ├── glasses.svg
│ │ │ │ │ ├── globe-africa.svg
│ │ │ │ │ ├── globe-americas.svg
│ │ │ │ │ ├── globe-asia.svg
│ │ │ │ │ ├── globe-europe.svg
│ │ │ │ │ ├── globe.svg
│ │ │ │ │ ├── golf-ball.svg
│ │ │ │ │ ├── gopuram.svg
│ │ │ │ │ ├── graduation-cap.svg
│ │ │ │ │ ├── greater-than-equal.svg
│ │ │ │ │ ├── greater-than.svg
│ │ │ │ │ ├── grimace.svg
│ │ │ │ │ ├── grin-alt.svg
│ │ │ │ │ ├── grin-beam-sweat.svg
│ │ │ │ │ ├── grin-beam.svg
│ │ │ │ │ ├── grin-hearts.svg
│ │ │ │ │ ├── grin-squint-tears.svg
│ │ │ │ │ ├── grin-squint.svg
│ │ │ │ │ ├── grin-stars.svg
│ │ │ │ │ ├── grin-tears.svg
│ │ │ │ │ ├── grin-tongue-squint.svg
│ │ │ │ │ ├── grin-tongue-wink.svg
│ │ │ │ │ ├── grin-tongue.svg
│ │ │ │ │ ├── grin-wink.svg
│ │ │ │ │ ├── grin.svg
│ │ │ │ │ ├── grip-horizontal.svg
│ │ │ │ │ ├── grip-lines-vertical.svg
│ │ │ │ │ ├── grip-lines.svg
│ │ │ │ │ ├── grip-vertical.svg
│ │ │ │ │ ├── guitar.svg
│ │ │ │ │ ├── h-square.svg
│ │ │ │ │ ├── hamburger.svg
│ │ │ │ │ ├── hammer.svg
│ │ │ │ │ ├── hamsa.svg
│ │ │ │ │ ├── hand-holding-heart.svg
│ │ │ │ │ ├── hand-holding-usd.svg
│ │ │ │ │ ├── hand-holding.svg
│ │ │ │ │ ├── hand-lizard.svg
│ │ │ │ │ ├── hand-middle-finger.svg
│ │ │ │ │ ├── hand-paper.svg
│ │ │ │ │ ├── hand-peace.svg
│ │ │ │ │ ├── hand-point-down.svg
│ │ │ │ │ ├── hand-point-left.svg
│ │ │ │ │ ├── hand-point-right.svg
│ │ │ │ │ ├── hand-point-up.svg
│ │ │ │ │ ├── hand-pointer.svg
│ │ │ │ │ ├── hand-rock.svg
│ │ │ │ │ ├── hand-scissors.svg
│ │ │ │ │ ├── hand-spock.svg
│ │ │ │ │ ├── hands-helping.svg
│ │ │ │ │ ├── hands.svg
│ │ │ │ │ ├── handshake.svg
│ │ │ │ │ ├── hanukiah.svg
│ │ │ │ │ ├── hard-hat.svg
│ │ │ │ │ ├── hashtag.svg
│ │ │ │ │ ├── hat-cowboy-side.svg
│ │ │ │ │ ├── hat-cowboy.svg
│ │ │ │ │ ├── hat-wizard.svg
│ │ │ │ │ ├── haykal.svg
│ │ │ │ │ ├── hdd.svg
│ │ │ │ │ ├── heading.svg
│ │ │ │ │ ├── headphones-alt.svg
│ │ │ │ │ ├── headphones.svg
│ │ │ │ │ ├── headset.svg
│ │ │ │ │ ├── heart-broken.svg
│ │ │ │ │ ├── heart.svg
│ │ │ │ │ ├── heartbeat.svg
│ │ │ │ │ ├── helicopter.svg
│ │ │ │ │ ├── highlighter.svg
│ │ │ │ │ ├── hiking.svg
│ │ │ │ │ ├── hippo.svg
│ │ │ │ │ ├── history.svg
│ │ │ │ │ ├── hockey-puck.svg
│ │ │ │ │ ├── holly-berry.svg
│ │ │ │ │ ├── home.svg
│ │ │ │ │ ├── horse-head.svg
│ │ │ │ │ ├── horse.svg
│ │ │ │ │ ├── hospital-alt.svg
│ │ │ │ │ ├── hospital-symbol.svg
│ │ │ │ │ ├── hospital.svg
│ │ │ │ │ ├── hot-tub.svg
│ │ │ │ │ ├── hotdog.svg
│ │ │ │ │ ├── hotel.svg
│ │ │ │ │ ├── hourglass-end.svg
│ │ │ │ │ ├── hourglass-half.svg
│ │ │ │ │ ├── hourglass-start.svg
│ │ │ │ │ ├── hourglass.svg
│ │ │ │ │ ├── house-damage.svg
│ │ │ │ │ ├── hryvnia.svg
│ │ │ │ │ ├── i-cursor.svg
│ │ │ │ │ ├── ice-cream.svg
│ │ │ │ │ ├── icicles.svg
│ │ │ │ │ ├── icons.svg
│ │ │ │ │ ├── id-badge.svg
│ │ │ │ │ ├── id-card-alt.svg
│ │ │ │ │ ├── id-card.svg
│ │ │ │ │ ├── igloo.svg
│ │ │ │ │ ├── image.svg
│ │ │ │ │ ├── images.svg
│ │ │ │ │ ├── inbox.svg
│ │ │ │ │ ├── indent.svg
│ │ │ │ │ ├── industry.svg
│ │ │ │ │ ├── infinity.svg
│ │ │ │ │ ├── info-circle.svg
│ │ │ │ │ ├── info.svg
│ │ │ │ │ ├── italic.svg
│ │ │ │ │ ├── jedi.svg
│ │ │ │ │ ├── joint.svg
│ │ │ │ │ ├── journal-whills.svg
│ │ │ │ │ ├── kaaba.svg
│ │ │ │ │ ├── key.svg
│ │ │ │ │ ├── keyboard.svg
│ │ │ │ │ ├── khanda.svg
│ │ │ │ │ ├── kiss-beam.svg
│ │ │ │ │ ├── kiss-wink-heart.svg
│ │ │ │ │ ├── kiss.svg
│ │ │ │ │ ├── kiwi-bird.svg
│ │ │ │ │ ├── landmark.svg
│ │ │ │ │ ├── language.svg
│ │ │ │ │ ├── laptop-code.svg
│ │ │ │ │ ├── laptop-medical.svg
│ │ │ │ │ ├── laptop.svg
│ │ │ │ │ ├── laugh-beam.svg
│ │ │ │ │ ├── laugh-squint.svg
│ │ │ │ │ ├── laugh-wink.svg
│ │ │ │ │ ├── laugh.svg
│ │ │ │ │ ├── layer-group.svg
│ │ │ │ │ ├── leaf.svg
│ │ │ │ │ ├── lemon.svg
│ │ │ │ │ ├── less-than-equal.svg
│ │ │ │ │ ├── less-than.svg
│ │ │ │ │ ├── level-down-alt.svg
│ │ │ │ │ ├── level-up-alt.svg
│ │ │ │ │ ├── life-ring.svg
│ │ │ │ │ ├── lightbulb.svg
│ │ │ │ │ ├── link.svg
│ │ │ │ │ ├── lira-sign.svg
│ │ │ │ │ ├── list-alt.svg
│ │ │ │ │ ├── list-ol.svg
│ │ │ │ │ ├── list-ul.svg
│ │ │ │ │ ├── list.svg
│ │ │ │ │ ├── location-arrow.svg
│ │ │ │ │ ├── lock-open.svg
│ │ │ │ │ ├── lock.svg
│ │ │ │ │ ├── long-arrow-alt-down.svg
│ │ │ │ │ ├── long-arrow-alt-left.svg
│ │ │ │ │ ├── long-arrow-alt-right.svg
│ │ │ │ │ ├── long-arrow-alt-up.svg
│ │ │ │ │ ├── low-vision.svg
│ │ │ │ │ ├── luggage-cart.svg
│ │ │ │ │ ├── magic.svg
│ │ │ │ │ ├── magnet.svg
│ │ │ │ │ ├── mail-bulk.svg
│ │ │ │ │ ├── male.svg
│ │ │ │ │ ├── map-marked-alt.svg
│ │ │ │ │ ├── map-marked.svg
│ │ │ │ │ ├── map-marker-alt.svg
│ │ │ │ │ ├── map-marker.svg
│ │ │ │ │ ├── map-pin.svg
│ │ │ │ │ ├── map-signs.svg
│ │ │ │ │ ├── map.svg
│ │ │ │ │ ├── marker.svg
│ │ │ │ │ ├── mars-double.svg
│ │ │ │ │ ├── mars-stroke-h.svg
│ │ │ │ │ ├── mars-stroke-v.svg
│ │ │ │ │ ├── mars-stroke.svg
│ │ │ │ │ ├── mars.svg
│ │ │ │ │ ├── mask.svg
│ │ │ │ │ ├── medal.svg
│ │ │ │ │ ├── medkit.svg
│ │ │ │ │ ├── meh-blank.svg
│ │ │ │ │ ├── meh-rolling-eyes.svg
│ │ │ │ │ ├── meh.svg
│ │ │ │ │ ├── memory.svg
│ │ │ │ │ ├── menorah.svg
│ │ │ │ │ ├── mercury.svg
│ │ │ │ │ ├── meteor.svg
│ │ │ │ │ ├── microchip.svg
│ │ │ │ │ ├── microphone-alt-slash.svg
│ │ │ │ │ ├── microphone-alt.svg
│ │ │ │ │ ├── microphone-slash.svg
│ │ │ │ │ ├── microphone.svg
│ │ │ │ │ ├── microscope.svg
│ │ │ │ │ ├── minus-circle.svg
│ │ │ │ │ ├── minus-square.svg
│ │ │ │ │ ├── minus.svg
│ │ │ │ │ ├── mitten.svg
│ │ │ │ │ ├── mobile-alt.svg
│ │ │ │ │ ├── mobile.svg
│ │ │ │ │ ├── money-bill-alt.svg
│ │ │ │ │ ├── money-bill-wave-alt.svg
│ │ │ │ │ ├── money-bill-wave.svg
│ │ │ │ │ ├── money-bill.svg
│ │ │ │ │ ├── money-check-alt.svg
│ │ │ │ │ ├── money-check.svg
│ │ │ │ │ ├── monument.svg
│ │ │ │ │ ├── moon.svg
│ │ │ │ │ ├── mortar-pestle.svg
│ │ │ │ │ ├── mosque.svg
│ │ │ │ │ ├── motorcycle.svg
│ │ │ │ │ ├── mountain.svg
│ │ │ │ │ ├── mouse-pointer.svg
│ │ │ │ │ ├── mouse.svg
│ │ │ │ │ ├── mug-hot.svg
│ │ │ │ │ ├── music.svg
│ │ │ │ │ ├── network-wired.svg
│ │ │ │ │ ├── neuter.svg
│ │ │ │ │ ├── newspaper.svg
│ │ │ │ │ ├── not-equal.svg
│ │ │ │ │ ├── notes-medical.svg
│ │ │ │ │ ├── object-group.svg
│ │ │ │ │ ├── object-ungroup.svg
│ │ │ │ │ ├── oil-can.svg
│ │ │ │ │ ├── om.svg
│ │ │ │ │ ├── otter.svg
│ │ │ │ │ ├── outdent.svg
│ │ │ │ │ ├── pager.svg
│ │ │ │ │ ├── paint-brush.svg
│ │ │ │ │ ├── paint-roller.svg
│ │ │ │ │ ├── palette.svg
│ │ │ │ │ ├── pallet.svg
│ │ │ │ │ ├── paper-plane.svg
│ │ │ │ │ ├── paperclip.svg
│ │ │ │ │ ├── parachute-box.svg
│ │ │ │ │ ├── paragraph.svg
│ │ │ │ │ ├── parking.svg
│ │ │ │ │ ├── passport.svg
│ │ │ │ │ ├── pastafarianism.svg
│ │ │ │ │ ├── paste.svg
│ │ │ │ │ ├── pause-circle.svg
│ │ │ │ │ ├── pause.svg
│ │ │ │ │ ├── paw.svg
│ │ │ │ │ ├── peace.svg
│ │ │ │ │ ├── pen-alt.svg
│ │ │ │ │ ├── pen-fancy.svg
│ │ │ │ │ ├── pen-nib.svg
│ │ │ │ │ ├── pen-square.svg
│ │ │ │ │ ├── pen.svg
│ │ │ │ │ ├── pencil-alt.svg
│ │ │ │ │ ├── pencil-ruler.svg
│ │ │ │ │ ├── people-carry.svg
│ │ │ │ │ ├── pepper-hot.svg
│ │ │ │ │ ├── percent.svg
│ │ │ │ │ ├── percentage.svg
│ │ │ │ │ ├── person-booth.svg
│ │ │ │ │ ├── phone-alt.svg
│ │ │ │ │ ├── phone-slash.svg
│ │ │ │ │ ├── phone-square-alt.svg
│ │ │ │ │ ├── phone-square.svg
│ │ │ │ │ ├── phone-volume.svg
│ │ │ │ │ ├── phone.svg
│ │ │ │ │ ├── photo-video.svg
│ │ │ │ │ ├── piggy-bank.svg
│ │ │ │ │ ├── pills.svg
│ │ │ │ │ ├── pizza-slice.svg
│ │ │ │ │ ├── place-of-worship.svg
│ │ │ │ │ ├── plane-arrival.svg
│ │ │ │ │ ├── plane-departure.svg
│ │ │ │ │ ├── plane.svg
│ │ │ │ │ ├── play-circle.svg
│ │ │ │ │ ├── play.svg
│ │ │ │ │ ├── plug.svg
│ │ │ │ │ ├── plus-circle.svg
│ │ │ │ │ ├── plus-square.svg
│ │ │ │ │ ├── plus.svg
│ │ │ │ │ ├── podcast.svg
│ │ │ │ │ ├── poll-h.svg
│ │ │ │ │ ├── poll.svg
│ │ │ │ │ ├── poo-storm.svg
│ │ │ │ │ ├── poo.svg
│ │ │ │ │ ├── poop.svg
│ │ │ │ │ ├── portrait.svg
│ │ │ │ │ ├── pound-sign.svg
│ │ │ │ │ ├── power-off.svg
│ │ │ │ │ ├── pray.svg
│ │ │ │ │ ├── praying-hands.svg
│ │ │ │ │ ├── prescription-bottle-alt.svg
│ │ │ │ │ ├── prescription-bottle.svg
│ │ │ │ │ ├── prescription.svg
│ │ │ │ │ ├── print.svg
│ │ │ │ │ ├── procedures.svg
│ │ │ │ │ ├── project-diagram.svg
│ │ │ │ │ ├── puzzle-piece.svg
│ │ │ │ │ ├── qrcode.svg
│ │ │ │ │ ├── question-circle.svg
│ │ │ │ │ ├── question.svg
│ │ │ │ │ ├── quidditch.svg
│ │ │ │ │ ├── quote-left.svg
│ │ │ │ │ ├── quote-right.svg
│ │ │ │ │ ├── quran.svg
│ │ │ │ │ ├── radiation-alt.svg
│ │ │ │ │ ├── radiation.svg
│ │ │ │ │ ├── rainbow.svg
│ │ │ │ │ ├── random.svg
│ │ │ │ │ ├── receipt.svg
│ │ │ │ │ ├── record-vinyl.svg
│ │ │ │ │ ├── recycle.svg
│ │ │ │ │ ├── redo-alt.svg
│ │ │ │ │ ├── redo.svg
│ │ │ │ │ ├── registered.svg
│ │ │ │ │ ├── remove-format.svg
│ │ │ │ │ ├── reply-all.svg
│ │ │ │ │ ├── reply.svg
│ │ │ │ │ ├── republican.svg
│ │ │ │ │ ├── restroom.svg
│ │ │ │ │ ├── retweet.svg
│ │ │ │ │ ├── ribbon.svg
│ │ │ │ │ ├── ring.svg
│ │ │ │ │ ├── road.svg
│ │ │ │ │ ├── robot.svg
│ │ │ │ │ ├── rocket.svg
│ │ │ │ │ ├── route.svg
│ │ │ │ │ ├── rss-square.svg
│ │ │ │ │ ├── rss.svg
│ │ │ │ │ ├── ruble-sign.svg
│ │ │ │ │ ├── ruler-combined.svg
│ │ │ │ │ ├── ruler-horizontal.svg
│ │ │ │ │ ├── ruler-vertical.svg
│ │ │ │ │ ├── ruler.svg
│ │ │ │ │ ├── running.svg
│ │ │ │ │ ├── rupee-sign.svg
│ │ │ │ │ ├── sad-cry.svg
│ │ │ │ │ ├── sad-tear.svg
│ │ │ │ │ ├── satellite-dish.svg
│ │ │ │ │ ├── satellite.svg
│ │ │ │ │ ├── save.svg
│ │ │ │ │ ├── school.svg
│ │ │ │ │ ├── screwdriver.svg
│ │ │ │ │ ├── scroll.svg
│ │ │ │ │ ├── sd-card.svg
│ │ │ │ │ ├── search-dollar.svg
│ │ │ │ │ ├── search-location.svg
│ │ │ │ │ ├── search-minus.svg
│ │ │ │ │ ├── search-plus.svg
│ │ │ │ │ ├── search.svg
│ │ │ │ │ ├── seedling.svg
│ │ │ │ │ ├── server.svg
│ │ │ │ │ ├── shapes.svg
│ │ │ │ │ ├── share-alt-square.svg
│ │ │ │ │ ├── share-alt.svg
│ │ │ │ │ ├── share-square.svg
│ │ │ │ │ ├── share.svg
│ │ │ │ │ ├── shekel-sign.svg
│ │ │ │ │ ├── shield-alt.svg
│ │ │ │ │ ├── ship.svg
│ │ │ │ │ ├── shipping-fast.svg
│ │ │ │ │ ├── shoe-prints.svg
│ │ │ │ │ ├── shopping-bag.svg
│ │ │ │ │ ├── shopping-basket.svg
│ │ │ │ │ ├── shopping-cart.svg
│ │ │ │ │ ├── shower.svg
│ │ │ │ │ ├── shuttle-van.svg
│ │ │ │ │ ├── sign-in-alt.svg
│ │ │ │ │ ├── sign-language.svg
│ │ │ │ │ ├── sign-out-alt.svg
│ │ │ │ │ ├── sign.svg
│ │ │ │ │ ├── signal.svg
│ │ │ │ │ ├── signature.svg
│ │ │ │ │ ├── sim-card.svg
│ │ │ │ │ ├── sitemap.svg
│ │ │ │ │ ├── skating.svg
│ │ │ │ │ ├── skiing-nordic.svg
│ │ │ │ │ ├── skiing.svg
│ │ │ │ │ ├── skull-crossbones.svg
│ │ │ │ │ ├── skull.svg
│ │ │ │ │ ├── slash.svg
│ │ │ │ │ ├── sleigh.svg
│ │ │ │ │ ├── sliders-h.svg
│ │ │ │ │ ├── smile-beam.svg
│ │ │ │ │ ├── smile-wink.svg
│ │ │ │ │ ├── smile.svg
│ │ │ │ │ ├── smog.svg
│ │ │ │ │ ├── smoking-ban.svg
│ │ │ │ │ ├── smoking.svg
│ │ │ │ │ ├── sms.svg
│ │ │ │ │ ├── snowboarding.svg
│ │ │ │ │ ├── snowflake.svg
│ │ │ │ │ ├── snowman.svg
│ │ │ │ │ ├── snowplow.svg
│ │ │ │ │ ├── socks.svg
│ │ │ │ │ ├── solar-panel.svg
│ │ │ │ │ ├── sort-alpha-down-alt.svg
│ │ │ │ │ ├── sort-alpha-down.svg
│ │ │ │ │ ├── sort-alpha-up-alt.svg
│ │ │ │ │ ├── sort-alpha-up.svg
│ │ │ │ │ ├── sort-amount-down-alt.svg
│ │ │ │ │ ├── sort-amount-down.svg
│ │ │ │ │ ├── sort-amount-up-alt.svg
│ │ │ │ │ ├── sort-amount-up.svg
│ │ │ │ │ ├── sort-down.svg
│ │ │ │ │ ├── sort-numeric-down-alt.svg
│ │ │ │ │ ├── sort-numeric-down.svg
│ │ │ │ │ ├── sort-numeric-up-alt.svg
│ │ │ │ │ ├── sort-numeric-up.svg
│ │ │ │ │ ├── sort-up.svg
│ │ │ │ │ ├── sort.svg
│ │ │ │ │ ├── spa.svg
│ │ │ │ │ ├── space-shuttle.svg
│ │ │ │ │ ├── spell-check.svg
│ │ │ │ │ ├── spider.svg
│ │ │ │ │ ├── spinner.svg
│ │ │ │ │ ├── splotch.svg
│ │ │ │ │ ├── spray-can.svg
│ │ │ │ │ ├── square-full.svg
│ │ │ │ │ ├── square-root-alt.svg
│ │ │ │ │ ├── square.svg
│ │ │ │ │ ├── stamp.svg
│ │ │ │ │ ├── star-and-crescent.svg
│ │ │ │ │ ├── star-half-alt.svg
│ │ │ │ │ ├── star-half.svg
│ │ │ │ │ ├── star-of-david.svg
│ │ │ │ │ ├── star-of-life.svg
│ │ │ │ │ ├── star.svg
│ │ │ │ │ ├── step-backward.svg
│ │ │ │ │ ├── step-forward.svg
│ │ │ │ │ ├── stethoscope.svg
│ │ │ │ │ ├── sticky-note.svg
│ │ │ │ │ ├── stop-circle.svg
│ │ │ │ │ ├── stop.svg
│ │ │ │ │ ├── stopwatch.svg
│ │ │ │ │ ├── store-alt.svg
│ │ │ │ │ ├── store.svg
│ │ │ │ │ ├── stream.svg
│ │ │ │ │ ├── street-view.svg
│ │ │ │ │ ├── strikethrough.svg
│ │ │ │ │ ├── stroopwafel.svg
│ │ │ │ │ ├── subscript.svg
│ │ │ │ │ ├── subway.svg
│ │ │ │ │ ├── suitcase-rolling.svg
│ │ │ │ │ ├── suitcase.svg
│ │ │ │ │ ├── sun.svg
│ │ │ │ │ ├── superscript.svg
│ │ │ │ │ ├── surprise.svg
│ │ │ │ │ ├── swatchbook.svg
│ │ │ │ │ ├── swimmer.svg
│ │ │ │ │ ├── swimming-pool.svg
│ │ │ │ │ ├── synagogue.svg
│ │ │ │ │ ├── sync-alt.svg
│ │ │ │ │ ├── sync.svg
│ │ │ │ │ ├── syringe.svg
│ │ │ │ │ ├── table-tennis.svg
│ │ │ │ │ ├── table.svg
│ │ │ │ │ ├── tablet-alt.svg
│ │ │ │ │ ├── tablet.svg
│ │ │ │ │ ├── tablets.svg
│ │ │ │ │ ├── tachometer-alt.svg
│ │ │ │ │ ├── tag.svg
│ │ │ │ │ ├── tags.svg
│ │ │ │ │ ├── tape.svg
│ │ │ │ │ ├── tasks.svg
│ │ │ │ │ ├── taxi.svg
│ │ │ │ │ ├── teeth-open.svg
│ │ │ │ │ ├── teeth.svg
│ │ │ │ │ ├── temperature-high.svg
│ │ │ │ │ ├── temperature-low.svg
│ │ │ │ │ ├── tenge.svg
│ │ │ │ │ ├── terminal.svg
│ │ │ │ │ ├── text-height.svg
│ │ │ │ │ ├── text-width.svg
│ │ │ │ │ ├── th-large.svg
│ │ │ │ │ ├── th-list.svg
│ │ │ │ │ ├── th.svg
│ │ │ │ │ ├── theater-masks.svg
│ │ │ │ │ ├── thermometer-empty.svg
│ │ │ │ │ ├── thermometer-full.svg
│ │ │ │ │ ├── thermometer-half.svg
│ │ │ │ │ ├── thermometer-quarter.svg
│ │ │ │ │ ├── thermometer-three-quarters.svg
│ │ │ │ │ ├── thermometer.svg
│ │ │ │ │ ├── thumbs-down.svg
│ │ │ │ │ ├── thumbs-up.svg
│ │ │ │ │ ├── thumbtack.svg
│ │ │ │ │ ├── ticket-alt.svg
│ │ │ │ │ ├── times-circle.svg
│ │ │ │ │ ├── times.svg
│ │ │ │ │ ├── tint-slash.svg
│ │ │ │ │ ├── tint.svg
│ │ │ │ │ ├── tired.svg
│ │ │ │ │ ├── toggle-off.svg
│ │ │ │ │ ├── toggle-on.svg
│ │ │ │ │ ├── toilet-paper.svg
│ │ │ │ │ ├── toilet.svg
│ │ │ │ │ ├── toolbox.svg
│ │ │ │ │ ├── tools.svg
│ │ │ │ │ ├── tooth.svg
│ │ │ │ │ ├── torah.svg
│ │ │ │ │ ├── torii-gate.svg
│ │ │ │ │ ├── tractor.svg
│ │ │ │ │ ├── trademark.svg
│ │ │ │ │ ├── traffic-light.svg
│ │ │ │ │ ├── train.svg
│ │ │ │ │ ├── tram.svg
│ │ │ │ │ ├── transgender-alt.svg
│ │ │ │ │ ├── transgender.svg
│ │ │ │ │ ├── trash-alt.svg
│ │ │ │ │ ├── trash-restore-alt.svg
│ │ │ │ │ ├── trash-restore.svg
│ │ │ │ │ ├── trash.svg
│ │ │ │ │ ├── tree.svg
│ │ │ │ │ ├── trophy.svg
│ │ │ │ │ ├── truck-loading.svg
│ │ │ │ │ ├── truck-monster.svg
│ │ │ │ │ ├── truck-moving.svg
│ │ │ │ │ ├── truck-pickup.svg
│ │ │ │ │ ├── truck.svg
│ │ │ │ │ ├── tshirt.svg
│ │ │ │ │ ├── tty.svg
│ │ │ │ │ ├── tv.svg
│ │ │ │ │ ├── umbrella-beach.svg
│ │ │ │ │ ├── umbrella.svg
│ │ │ │ │ ├── underline.svg
│ │ │ │ │ ├── undo-alt.svg
│ │ │ │ │ ├── undo.svg
│ │ │ │ │ ├── universal-access.svg
│ │ │ │ │ ├── university.svg
│ │ │ │ │ ├── unlink.svg
│ │ │ │ │ ├── unlock-alt.svg
│ │ │ │ │ ├── unlock.svg
│ │ │ │ │ ├── upload.svg
│ │ │ │ │ ├── user-alt-slash.svg
│ │ │ │ │ ├── user-alt.svg
│ │ │ │ │ ├── user-astronaut.svg
│ │ │ │ │ ├── user-check.svg
│ │ │ │ │ ├── user-circle.svg
│ │ │ │ │ ├── user-clock.svg
│ │ │ │ │ ├── user-cog.svg
│ │ │ │ │ ├── user-edit.svg
│ │ │ │ │ ├── user-friends.svg
│ │ │ │ │ ├── user-graduate.svg
│ │ │ │ │ ├── user-injured.svg
│ │ │ │ │ ├── user-lock.svg
│ │ │ │ │ ├── user-md.svg
│ │ │ │ │ ├── user-minus.svg
│ │ │ │ │ ├── user-ninja.svg
│ │ │ │ │ ├── user-nurse.svg
│ │ │ │ │ ├── user-plus.svg
│ │ │ │ │ ├── user-secret.svg
│ │ │ │ │ ├── user-shield.svg
│ │ │ │ │ ├── user-slash.svg
│ │ │ │ │ ├── user-tag.svg
│ │ │ │ │ ├── user-tie.svg
│ │ │ │ │ ├── user-times.svg
│ │ │ │ │ ├── user.svg
│ │ │ │ │ ├── users-cog.svg
│ │ │ │ │ ├── users.svg
│ │ │ │ │ ├── utensil-spoon.svg
│ │ │ │ │ ├── utensils.svg
│ │ │ │ │ ├── vector-square.svg
│ │ │ │ │ ├── venus-double.svg
│ │ │ │ │ ├── venus-mars.svg
│ │ │ │ │ ├── venus.svg
│ │ │ │ │ ├── vial.svg
│ │ │ │ │ ├── vials.svg
│ │ │ │ │ ├── video-slash.svg
│ │ │ │ │ ├── video.svg
│ │ │ │ │ ├── vihara.svg
│ │ │ │ │ ├── voicemail.svg
│ │ │ │ │ ├── volleyball-ball.svg
│ │ │ │ │ ├── volume-down.svg
│ │ │ │ │ ├── volume-mute.svg
│ │ │ │ │ ├── volume-off.svg
│ │ │ │ │ ├── volume-up.svg
│ │ │ │ │ ├── vote-yea.svg
│ │ │ │ │ ├── vr-cardboard.svg
│ │ │ │ │ ├── walking.svg
│ │ │ │ │ ├── wallet.svg
│ │ │ │ │ ├── warehouse.svg
│ │ │ │ │ ├── water.svg
│ │ │ │ │ ├── wave-square.svg
│ │ │ │ │ ├── weight-hanging.svg
│ │ │ │ │ ├── weight.svg
│ │ │ │ │ ├── wheelchair.svg
│ │ │ │ │ ├── wifi.svg
│ │ │ │ │ ├── wind.svg
│ │ │ │ │ ├── window-close.svg
│ │ │ │ │ ├── window-maximize.svg
│ │ │ │ │ ├── window-minimize.svg
│ │ │ │ │ ├── window-restore.svg
│ │ │ │ │ ├── wine-bottle.svg
│ │ │ │ │ ├── wine-glass-alt.svg
│ │ │ │ │ ├── wine-glass.svg
│ │ │ │ │ ├── won-sign.svg
│ │ │ │ │ ├── wrench.svg
│ │ │ │ │ ├── x-ray.svg
│ │ │ │ │ ├── yen-sign.svg
│ │ │ │ │ └── yin-yang.svg
│ │ │ │ └── webfonts
│ │ │ │ ├── fa-brands-400.eot
│ │ │ │ ├── fa-brands-400.svg
│ │ │ │ ├── fa-brands-400.ttf
│ │ │ │ ├── fa-brands-400.woff
│ │ │ │ ├── fa-brands-400.woff2
│ │ │ │ ├── fa-regular-400.eot
│ │ │ │ ├── fa-regular-400.svg
│ │ │ │ ├── fa-regular-400.ttf
│ │ │ │ ├── fa-regular-400.woff
│ │ │ │ ├── fa-regular-400.woff2
│ │ │ │ ├── fa-solid-900.eot
│ │ │ │ ├── fa-solid-900.svg
│ │ │ │ ├── fa-solid-900.ttf
│ │ │ │ ├── fa-solid-900.woff
│ │ │ │ └── fa-solid-900.woff2
│ │ │ ├── bootstrap
│ │ │ └── dist
│ │ │ │ ├── css
│ │ │ │ ├── bootstrap-grid.min.css
│ │ │ │ ├── bootstrap-reboot.min.css
│ │ │ │ ├── bootstrap-utilities.min.css
│ │ │ │ └── bootstrap.min.css
│ │ │ │ └── js
│ │ │ │ ├── bootstrap.bundle.min.js
│ │ │ │ ├── bootstrap.esm.min.js
│ │ │ │ └── bootstrap.min.js
│ │ │ ├── chartist-plugin-tooltips
│ │ │ └── dist
│ │ │ │ ├── chartist-plugin-tooltip.css
│ │ │ │ └── chartist-plugin-tooltip.min.js
│ │ │ ├── chartist
│ │ │ └── dist
│ │ │ │ ├── chartist.min.css
│ │ │ │ └── chartist.min.js
│ │ │ ├── countup.js
│ │ │ └── dist
│ │ │ │ ├── countUp.min.js
│ │ │ │ ├── countUp.umd.js
│ │ │ │ └── countUp.withPolyfill.min.js
│ │ │ ├── jarallax
│ │ │ └── dist
│ │ │ │ ├── jarallax-element.min.js
│ │ │ │ ├── jarallax-video.min.js
│ │ │ │ ├── jarallax.css
│ │ │ │ └── jarallax.min.js
│ │ │ ├── notyf
│ │ │ ├── notyf.es.js
│ │ │ ├── notyf.min.css
│ │ │ ├── notyf.min.js
│ │ │ └── notyf.umd.js
│ │ │ ├── nouislider
│ │ │ └── distribute
│ │ │ │ ├── nouislider.min.css
│ │ │ │ └── nouislider.min.js
│ │ │ ├── onscreen
│ │ │ └── dist
│ │ │ │ ├── on-screen.es6.js
│ │ │ │ └── on-screen.umd.min.js
│ │ │ ├── popper.js
│ │ │ └── dist
│ │ │ │ ├── esm
│ │ │ │ ├── popper-utils.min.js
│ │ │ │ └── popper.min.js
│ │ │ │ ├── popper-utils.min.js
│ │ │ │ ├── popper.min.js
│ │ │ │ └── umd
│ │ │ │ ├── popper-utils.min.js
│ │ │ │ ├── popper.js.flow
│ │ │ │ └── popper.min.js
│ │ │ ├── simplebar
│ │ │ └── dist
│ │ │ │ ├── simplebar.esm.js
│ │ │ │ ├── simplebar.min.css
│ │ │ │ ├── simplebar.min.js
│ │ │ │ └── simplebar.umd.js
│ │ │ ├── smooth-scroll
│ │ │ └── dist
│ │ │ │ ├── smooth-scroll.min.js
│ │ │ │ └── smooth-scroll.polyfills.min.js
│ │ │ ├── vanillajs-datepicker
│ │ │ └── dist
│ │ │ │ ├── css
│ │ │ │ ├── datepicker-bs4.min.css
│ │ │ │ ├── datepicker-bulma.min.css
│ │ │ │ ├── datepicker-foundation.min.css
│ │ │ │ └── datepicker.min.css
│ │ │ │ └── js
│ │ │ │ ├── datepicker-full.min.js
│ │ │ │ ├── datepicker.min.js
│ │ │ │ └── locales
│ │ │ │ ├── ar-tn.js
│ │ │ │ ├── ar.js
│ │ │ │ ├── az.js
│ │ │ │ ├── bg.js
│ │ │ │ ├── bm.js
│ │ │ │ ├── bn.js
│ │ │ │ ├── br.js
│ │ │ │ ├── bs.js
│ │ │ │ ├── ca.js
│ │ │ │ ├── cs.js
│ │ │ │ ├── cy.js
│ │ │ │ ├── da.js
│ │ │ │ ├── de.js
│ │ │ │ ├── el.js
│ │ │ │ ├── en-AU.js
│ │ │ │ ├── en-CA.js
│ │ │ │ ├── en-GB.js
│ │ │ │ ├── en-IE.js
│ │ │ │ ├── en-NZ.js
│ │ │ │ ├── en-ZA.js
│ │ │ │ ├── eo.js
│ │ │ │ ├── es.js
│ │ │ │ ├── et.js
│ │ │ │ ├── eu.js
│ │ │ │ ├── fa.js
│ │ │ │ ├── fi.js
│ │ │ │ ├── fo.js
│ │ │ │ ├── fr-CH.js
│ │ │ │ ├── fr.js
│ │ │ │ ├── gl.js
│ │ │ │ ├── he.js
│ │ │ │ ├── hi.js
│ │ │ │ ├── hr.js
│ │ │ │ ├── hu.js
│ │ │ │ ├── hy.js
│ │ │ │ ├── id.js
│ │ │ │ ├── is.js
│ │ │ │ ├── it-CH.js
│ │ │ │ ├── it.js
│ │ │ │ ├── ja.js
│ │ │ │ ├── ka.js
│ │ │ │ ├── kk.js
│ │ │ │ ├── km.js
│ │ │ │ ├── ko.js
│ │ │ │ ├── lt.js
│ │ │ │ ├── lv.js
│ │ │ │ ├── me.js
│ │ │ │ ├── mk.js
│ │ │ │ ├── mn.js
│ │ │ │ ├── mr.js
│ │ │ │ ├── ms.js
│ │ │ │ ├── nl-BE.js
│ │ │ │ ├── nl.js
│ │ │ │ ├── no.js
│ │ │ │ ├── oc.js
│ │ │ │ ├── pl.js
│ │ │ │ ├── pt-BR.js
│ │ │ │ ├── pt.js
│ │ │ │ ├── ro.js
│ │ │ │ ├── ru.js
│ │ │ │ ├── si.js
│ │ │ │ ├── sk.js
│ │ │ │ ├── sl.js
│ │ │ │ ├── sq.js
│ │ │ │ ├── sr-latn.js
│ │ │ │ ├── sr.js
│ │ │ │ ├── sv.js
│ │ │ │ ├── sw.js
│ │ │ │ ├── ta.js
│ │ │ │ ├── tg.js
│ │ │ │ ├── th.js
│ │ │ │ ├── tk.js
│ │ │ │ ├── tr.js
│ │ │ │ ├── uk.js
│ │ │ │ ├── uz-cyrl.js
│ │ │ │ ├── uz-latn.js
│ │ │ │ ├── vi.js
│ │ │ │ ├── zh-CN.js
│ │ │ │ └── zh-TW.js
│ │ │ └── waypoints
│ │ │ ├── lib
│ │ │ ├── jquery.waypoints.min.js
│ │ │ ├── noframework.waypoints.min.js
│ │ │ ├── shortcuts
│ │ │ │ ├── infinite.min.js
│ │ │ │ ├── inview.min.js
│ │ │ │ └── sticky.min.js
│ │ │ ├── waypoints.debug.js
│ │ │ └── zepto.waypoints.min.js
│ │ │ ├── licenses.txt
│ │ │ └── testem.json
│ ├── favicon.ico
│ └── sitemap.xml
├── staticfiles
│ └── .gitkeep
├── templates
│ ├── accounts
│ │ ├── login.html
│ │ └── register.html
│ ├── bootstrap-tables.html
│ ├── dashboard.html
│ ├── forgot-password.html
│ ├── includes
│ │ ├── footer.html
│ │ ├── navigation.html
│ │ ├── scripts.html
│ │ └── sidebar.html
│ ├── index.html
│ ├── layouts
│ │ ├── base-fullscreen.html
│ │ └── base.html
│ ├── lock.html
│ ├── page-403.html
│ ├── page-404.html
│ ├── page-500.html
│ ├── reset-password.html
│ ├── settings.html
│ ├── sign-in.html
│ ├── sign-up.html
│ ├── transactions.html
│ ├── ui-buttons.html
│ ├── ui-forms.html
│ ├── ui-modals.html
│ ├── ui-notifications.html
│ └── ui-typography.html
├── urls.py
└── wsgi.py
├── customers
├── __init__.py
├── admin.py
├── apps.py
├── forms.py
├── migrations
│ └── __init__.py
├── models.py
├── signals.py
├── templates
│ └── customers
│ │ └── profile.html
├── tests.py
├── urls.py
└── views.py
├── docker-compose.yml
├── gunicorn-cfg.py
├── manage.py
├── media
├── django-dashboard-volt-screen-settings.png
├── django-edit-profile-intro.gif
└── django-user-profile-screen-codebase.png
├── nginx
└── appseed-app.conf
├── package.json
├── requirements.txt
├── runtime.txt
└── staticfiles
└── .gitkeep
/.env:
--------------------------------------------------------------------------------
1 | DEBUG=True
2 | SECRET_KEY=S3cr3t_K#Key
3 | SERVER=django-volt-dashboard.appseed-srv1.com
4 |
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | # Change Log
2 |
3 | ## [1.0.0] 2023-06-04
4 | ### Changes
5 |
6 | - STABLE Version
7 | - Remove Decouple dependency
8 | - Auth Pages, minor improvements
9 |
10 | ## [0.0.2] 2021-03-30
11 | ### Changes
12 |
13 | - Added flask message after save
14 | - Patch #1 - Routing Error after install
15 | - Patch #2 - Add flash message to page after saving
16 |
17 | ## [0.0.1] 2021-03-29
18 | ### Changes
19 |
20 | - Initial stable release
21 |
--------------------------------------------------------------------------------
/Dockerfile:
--------------------------------------------------------------------------------
1 | FROM python:3.6
2 |
3 | ENV FLASK_APP run.py
4 |
5 | COPY manage.py gunicorn-cfg.py requirements.txt .env ./
6 | COPY app app
7 | COPY authentication authentication
8 | COPY core core
9 | COPY customers customers
10 |
11 | RUN pip install -r requirements.txt
12 |
13 | RUN python manage.py makemigrations
14 | RUN python manage.py migrate
15 |
16 | EXPOSE 5005
17 | CMD ["gunicorn", "--config", "gunicorn-cfg.py", "core.wsgi"]
18 |
--------------------------------------------------------------------------------
/Procfile:
--------------------------------------------------------------------------------
1 | web: gunicorn core.wsgi --log-file=-
2 |
--------------------------------------------------------------------------------
/app/__init__.py:
--------------------------------------------------------------------------------
1 | # -*- encoding: utf-8 -*-
2 | """
3 | Copyright (c) 2019 - present AppSeed.us
4 | """
5 |
--------------------------------------------------------------------------------
/app/admin.py:
--------------------------------------------------------------------------------
1 | # -*- encoding: utf-8 -*-
2 | """
3 | Copyright (c) 2019 - present AppSeed.us
4 | """
5 |
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 |
--------------------------------------------------------------------------------
/app/config.py:
--------------------------------------------------------------------------------
1 | # -*- encoding: utf-8 -*-
2 | """
3 | Copyright (c) 2019 - present AppSeed.us
4 | """
5 |
6 | from django.apps import AppConfig
7 |
8 | class MyConfig(AppConfig):
9 | name = 'cfg'
10 |
--------------------------------------------------------------------------------
/app/migrations/__init__.py:
--------------------------------------------------------------------------------
1 | # -*- encoding: utf-8 -*-
2 | """
3 | Copyright (c) 2019 - present AppSeed.us
4 | """
5 |
--------------------------------------------------------------------------------
/app/models.py:
--------------------------------------------------------------------------------
1 | # -*- encoding: utf-8 -*-
2 | """
3 | Copyright (c) 2019 - present AppSeed.us
4 | """
5 |
6 | from django.db import models
7 | from django.contrib.auth.models import User
8 |
9 | # Create your models here.
10 |
11 |
--------------------------------------------------------------------------------
/app/tests.py:
--------------------------------------------------------------------------------
1 | # -*- encoding: utf-8 -*-
2 | """
3 | Copyright (c) 2019 - present AppSeed.us
4 | """
5 |
6 | from django.test import TestCase
7 |
8 | # Create your tests here.
9 |
--------------------------------------------------------------------------------
/app/urls.py:
--------------------------------------------------------------------------------
1 | # -*- encoding: utf-8 -*-
2 | """
3 | Copyright (c) 2019 - present AppSeed.us
4 | """
5 |
6 | from django.urls import path, re_path
7 | from app import views
8 |
9 | urlpatterns = [
10 |
11 | # The home page
12 | path('', views.index, name='home'),
13 |
14 | # Matches any html file
15 | re_path(r'^.*\.html', views.pages, name='pages'),
16 |
17 | ]
18 |
--------------------------------------------------------------------------------
/authentication/__init__.py:
--------------------------------------------------------------------------------
1 | # -*- encoding: utf-8 -*-
2 | """
3 | Copyright (c) 2019 - present AppSeed.us
4 | """
5 |
--------------------------------------------------------------------------------
/authentication/admin.py:
--------------------------------------------------------------------------------
1 | # -*- encoding: utf-8 -*-
2 | """
3 | Copyright (c) 2019 - present AppSeed.us
4 | """
5 |
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 |
--------------------------------------------------------------------------------
/authentication/config.py:
--------------------------------------------------------------------------------
1 | # -*- encoding: utf-8 -*-
2 | """
3 | Copyright (c) 2019 - present AppSeed.us
4 | """
5 |
6 | from django.apps import AppConfig
7 |
8 | class AuthConfig(AppConfig):
9 | name = 'authcfg'
10 |
--------------------------------------------------------------------------------
/authentication/migrations/__init__.py:
--------------------------------------------------------------------------------
1 | # -*- encoding: utf-8 -*-
2 | """
3 | Copyright (c) 2019 - present AppSeed.us
4 | """
5 |
--------------------------------------------------------------------------------
/authentication/models.py:
--------------------------------------------------------------------------------
1 | # -*- encoding: utf-8 -*-
2 | """
3 | Copyright (c) 2019 - present AppSeed.us
4 | """
5 |
6 | from django.db import models
7 |
8 | # Create your models here.
9 |
--------------------------------------------------------------------------------
/authentication/tests.py:
--------------------------------------------------------------------------------
1 | # -*- encoding: utf-8 -*-
2 | """
3 | Copyright (c) 2019 - present AppSeed.us
4 | """
5 |
6 | from django.test import TestCase
7 |
8 | # Create your tests here.
9 |
--------------------------------------------------------------------------------
/authentication/urls.py:
--------------------------------------------------------------------------------
1 | # -*- encoding: utf-8 -*-
2 | """
3 | Copyright (c) 2019 - present AppSeed.us
4 | """
5 |
6 | from django.urls import path
7 | from .views import login_view, register_user
8 | from django.contrib.auth.views import LogoutView
9 |
10 | urlpatterns = [
11 | path('login/', login_view, name="login"),
12 | path('register/', register_user, name="register"),
13 | path("logout/", LogoutView.as_view(), name="logout")
14 | ]
15 |
--------------------------------------------------------------------------------
/core/__init__.py:
--------------------------------------------------------------------------------
1 | # -*- encoding: utf-8 -*-
2 | """
3 | Copyright (c) 2019 - present AppSeed.us
4 | """
5 |
--------------------------------------------------------------------------------
/core/asgi.py:
--------------------------------------------------------------------------------
1 | # -*- encoding: utf-8 -*-
2 | """
3 | Copyright (c) 2019 - present AppSeed.us
4 | """
5 |
6 | import os
7 |
8 | from django.core.asgi import get_asgi_application
9 |
10 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'core.settings')
11 |
12 | application = get_asgi_application()
13 |
--------------------------------------------------------------------------------
/core/static/assets/img/brand/light.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/img/favicon/android-chrome-192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/img/favicon/android-chrome-192x192.png
--------------------------------------------------------------------------------
/core/static/assets/img/favicon/android-chrome-512x512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/img/favicon/android-chrome-512x512.png
--------------------------------------------------------------------------------
/core/static/assets/img/favicon/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/img/favicon/apple-touch-icon.png
--------------------------------------------------------------------------------
/core/static/assets/img/favicon/browserconfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | #ffffff
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/core/static/assets/img/favicon/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/img/favicon/favicon-16x16.png
--------------------------------------------------------------------------------
/core/static/assets/img/favicon/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/img/favicon/favicon-32x32.png
--------------------------------------------------------------------------------
/core/static/assets/img/favicon/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/img/favicon/favicon.ico
--------------------------------------------------------------------------------
/core/static/assets/img/favicon/mstile-150x150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/img/favicon/mstile-150x150.png
--------------------------------------------------------------------------------
/core/static/assets/img/mockup-presentation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/img/mockup-presentation.png
--------------------------------------------------------------------------------
/core/static/assets/img/pages/404.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/img/pages/404.jpg
--------------------------------------------------------------------------------
/core/static/assets/img/pages/500.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/img/pages/500.jpg
--------------------------------------------------------------------------------
/core/static/assets/img/pages/forgot-password.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/img/pages/forgot-password.jpg
--------------------------------------------------------------------------------
/core/static/assets/img/pages/lock.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/img/pages/lock.jpg
--------------------------------------------------------------------------------
/core/static/assets/img/pages/overview.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/img/pages/overview.jpg
--------------------------------------------------------------------------------
/core/static/assets/img/pages/reset-password.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/img/pages/reset-password.jpg
--------------------------------------------------------------------------------
/core/static/assets/img/pages/settings.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/img/pages/settings.jpg
--------------------------------------------------------------------------------
/core/static/assets/img/pages/sign-in.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/img/pages/sign-in.jpg
--------------------------------------------------------------------------------
/core/static/assets/img/pages/sign-up.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/img/pages/sign-up.jpg
--------------------------------------------------------------------------------
/core/static/assets/img/pages/transactions.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/img/pages/transactions.jpg
--------------------------------------------------------------------------------
/core/static/assets/img/profile-cover.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/img/profile-cover.jpg
--------------------------------------------------------------------------------
/core/static/assets/img/team/default-profile-picture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/img/team/default-profile-picture.png
--------------------------------------------------------------------------------
/core/static/assets/img/team/profile-picture-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/img/team/profile-picture-1.jpg
--------------------------------------------------------------------------------
/core/static/assets/img/team/profile-picture-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/img/team/profile-picture-2.jpg
--------------------------------------------------------------------------------
/core/static/assets/img/team/profile-picture-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/img/team/profile-picture-3.jpg
--------------------------------------------------------------------------------
/core/static/assets/img/team/profile-picture-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/img/team/profile-picture-4.jpg
--------------------------------------------------------------------------------
/core/static/assets/img/team/profile-picture-5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/img/team/profile-picture-5.jpg
--------------------------------------------------------------------------------
/core/static/assets/img/team/profile-picture-6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/img/team/profile-picture-6.jpg
--------------------------------------------------------------------------------
/core/static/assets/img/team/profile-picture-freelancer.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/img/team/profile-picture-freelancer.jpg
--------------------------------------------------------------------------------
/core/static/assets/js/volt.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/js/volt.min.js
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/adn.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/adobe.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/affiliatetheme.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/angular.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/artstation.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/atlassian.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/autoprefixer.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/bandcamp.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/bitbucket.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/black-tie.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/bluetooth-b.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/bluetooth.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/buysellads.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/cloudsmith.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/creative-commons-nd.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/css3-alt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/css3.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/cuttlefish.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/dashcube.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/deviantart.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/digg.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/digital-ocean.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/discourse.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/dochub.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/dropbox.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/dyalog.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/elementor.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/ello.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/envira.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/erlang.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/ethereum.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/facebook-f.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/facebook-square.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/facebook.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/figma.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/firstdraft.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/flickr.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/flipboard.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/fulcrum.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/get-pocket.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/gg-circle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/gg.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/gitlab.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/gitter.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/google-drive.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/google-play.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/google.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/gratipay.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/hacker-news-square.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/hacker-news.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/hotjar.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/houzz.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/html5.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/jira.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/kaggle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/kickstarter-k.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/korvue.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/linkedin-in.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/magento.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/markdown.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/maxcdn.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/medium-m.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/medium.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/megaport.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/microsoft.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/mix.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/modx.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/monero.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/npm.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/opencart.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/openid.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/patreon.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/pied-piper.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/product-hunt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/quinscape.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/renren.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/rockrms.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/servicestack.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/sistrix.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/sketch.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/sourcetree.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/stack-exchange.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/stack-overflow.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/strava.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/stripe-s.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/superpowers.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/telegram-plane.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/telegram.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/think-peaks.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/twitch.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/typo3.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/uikit.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/viacoin.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/vuejs.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/windows.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/y-combinator.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/yahoo.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/yandex-international.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/yandex.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/arrow-alt-circle-down.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/arrow-alt-circle-left.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/arrow-alt-circle-right.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/arrow-alt-circle-up.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/bookmark.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/calendar.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/caret-square-down.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/caret-square-left.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/caret-square-right.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/caret-square-up.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/circle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/clock.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/clone.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/comment-alt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/dot-circle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/file.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/folder-open.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/folder.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/meh-blank.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/minus-square.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/play-circle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/square.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/star-half.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/sticky-note.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/stop-circle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/window-maximize.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/window-minimize.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/window-restore.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/adjust.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/angle-down.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/angle-left.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/angle-right.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/angle-up.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/archive.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/archway.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-alt-circle-down.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-alt-circle-left.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-alt-circle-right.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-alt-circle-up.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-circle-down.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-circle-left.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-circle-right.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-circle-up.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-down.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-left.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-right.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrow-up.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrows-alt-h.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/arrows-alt-v.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/backward.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/ban.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bars.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/battery-empty.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/battery-full.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/battery-half.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/battery-quarter.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/battery-three-quarters.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bed.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bold.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bolt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bookmark.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/border-all.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bowling-ball.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/box.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bread-slice.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/briefcase.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/brush.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/burn.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/calendar-day.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/calendar-week.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/calendar.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/camera.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/caret-down.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/caret-left.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/caret-right.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/caret-square-down.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/caret-square-left.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/caret-square-right.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/caret-square-up.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/caret-up.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chalkboard.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chart-area.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/check.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/cheese.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chess-king.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chevron-circle-down.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chevron-circle-left.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chevron-circle-right.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chevron-circle-up.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chevron-down.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chevron-left.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chevron-right.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chevron-up.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/circle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/clipboard.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/clock.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/clone.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/cloud.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/coffee.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/columns.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/comment-alt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/comment.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/compact-disc.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/concierge-bell.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/copy.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/credit-card.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/crop-alt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/cross.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/cube.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/desktop.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/dice-one.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/dice-three.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/dice-two.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/divide.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/door-closed.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/door-open.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/dot-circle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/egg.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/eject.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/ellipsis-h.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/ellipsis-v.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/equals.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/eraser.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/ethernet.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/exclamation.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/eye.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/fast-backward.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/fast-forward.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/female.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/file.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/filter.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/fire.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/first-aid.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/fish.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/flask.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/folder-minus.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/folder-open.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/folder.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/font.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/forward.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/gamepad.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/gem.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/genderless.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/glass-martini-alt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/glass-martini.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/glass-whiskey.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/greater-than.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/grip-lines-vertical.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/grip-lines.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/hand-holding.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/hard-hat.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/hat-wizard.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/heart-broken.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/heart.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/hockey-puck.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/hospital-symbol.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/ice-cream.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/icicles.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/image.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/inbox.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/industry.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/info.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/italic.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/laptop.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/laugh.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/less-than.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/level-down-alt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/level-up-alt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/location-arrow.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/lock-open.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/lock.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/long-arrow-alt-down.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/long-arrow-alt-left.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/long-arrow-alt-right.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/long-arrow-alt-up.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/male.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/map-marker-alt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/map-marker.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/map-pin.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/map.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/mars.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/meh-blank.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/meh.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/minus-circle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/minus-square.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/minus.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/mitten.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/mobile-alt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/mobile.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/moon.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/mountain.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/mouse-pointer.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/mouse.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/music.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/neuter.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/pager.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/paint-roller.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/paper-plane.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/paragraph.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/parking.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/pause-circle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/pause.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/pen.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/phone-alt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/phone.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/play-circle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/play.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/plug.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/plus-circle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/plus-square.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/plus.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/prescription-bottle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/qrcode.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/record-vinyl.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/redo.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/reply.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/ruler-vertical.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/screwdriver.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/scroll.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/sd-card.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/search.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/seedling.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/shapes.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/share.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/shield-alt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/sign-in-alt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/sign-out-alt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/sign.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/sim-card.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/slash.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/sort-down.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/sort-up.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/sort.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/square-full.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/square.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/star-half.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/star.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/step-backward.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/step-forward.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/sticky-note.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/stop-circle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/stop.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/store-alt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/stream.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/suitcase.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/surprise.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/table.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tablet-alt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tablet.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tag.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tape.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tenge.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tint.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/toggle-off.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/toggle-on.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/trash.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tshirt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tv.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/unlock.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/user-alt-slash.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/user-alt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/user-slash.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/user-tie.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/user.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/utensil-spoon.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/venus.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/vial.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/video.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/voicemail.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/volume-off.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/wallet.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/wave-square.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/window-maximize.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/window-minimize.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/window-restore.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/wine-glass-alt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/wine-glass.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff
--------------------------------------------------------------------------------
/core/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/assets/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2
--------------------------------------------------------------------------------
/core/static/assets/vendor/jarallax/dist/jarallax.css:
--------------------------------------------------------------------------------
1 | .jarallax {
2 | position: relative;
3 | z-index: 0;
4 | }
5 | .jarallax > .jarallax-img {
6 | position: absolute;
7 | object-fit: cover;
8 | /* support for plugin https://github.com/bfred-it/object-fit-images */
9 | font-family: 'object-fit: cover;';
10 | top: 0;
11 | left: 0;
12 | width: 100%;
13 | height: 100%;
14 | z-index: -1;
15 | }
--------------------------------------------------------------------------------
/core/static/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/static/favicon.ico
--------------------------------------------------------------------------------
/core/staticfiles/.gitkeep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/core/staticfiles/.gitkeep
--------------------------------------------------------------------------------
/core/wsgi.py:
--------------------------------------------------------------------------------
1 | # -*- encoding: utf-8 -*-
2 | """
3 | Copyright (c) 2019 - present AppSeed.us
4 | """
5 |
6 | import os
7 |
8 | from django.core.wsgi import get_wsgi_application
9 |
10 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'core.settings')
11 |
12 | application = get_wsgi_application()
13 |
--------------------------------------------------------------------------------
/customers/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/customers/__init__.py
--------------------------------------------------------------------------------
/customers/admin.py:
--------------------------------------------------------------------------------
1 | from django.contrib import admin
2 |
3 | from customers.models import Profile
4 |
5 | admin.site.register(Profile)
6 |
--------------------------------------------------------------------------------
/customers/apps.py:
--------------------------------------------------------------------------------
1 | from django.apps import AppConfig
2 |
3 |
4 | class CustomersConfig(AppConfig):
5 | name = 'customers'
6 |
--------------------------------------------------------------------------------
/customers/migrations/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/customers/migrations/__init__.py
--------------------------------------------------------------------------------
/customers/signals.py:
--------------------------------------------------------------------------------
1 | from django.contrib.auth.models import User
2 | from django.db.models.signals import post_save
3 | from django.dispatch import receiver
4 |
5 | from customers.models import Profile
6 |
7 |
8 | @receiver(post_save, sender=User, dispatch_uid='save_new_user_profile')
9 | def save_profile(sender, instance, created, **kwargs):
10 | if created:
11 | profile = Profile(user=instance)
12 | profile.save()
13 |
--------------------------------------------------------------------------------
/customers/tests.py:
--------------------------------------------------------------------------------
1 | from django.test import TestCase
2 |
3 | # Create your tests here.
4 |
--------------------------------------------------------------------------------
/customers/urls.py:
--------------------------------------------------------------------------------
1 | from django.urls import path
2 | from customers import views
3 |
4 | urlpatterns = [
5 | path('profile/', views.ProfileView.as_view(), name='profile'),
6 | ]
7 |
--------------------------------------------------------------------------------
/gunicorn-cfg.py:
--------------------------------------------------------------------------------
1 | # -*- encoding: utf-8 -*-
2 | """
3 | Copyright (c) 2019 - present AppSeed.us
4 | """
5 |
6 | bind = '0.0.0.0:5005'
7 | workers = 1
8 | accesslog = '-'
9 | loglevel = 'debug'
10 | capture_output = True
11 | enable_stdio_inheritance = True
12 |
--------------------------------------------------------------------------------
/media/django-dashboard-volt-screen-settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/media/django-dashboard-volt-screen-settings.png
--------------------------------------------------------------------------------
/media/django-edit-profile-intro.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/media/django-edit-profile-intro.gif
--------------------------------------------------------------------------------
/media/django-user-profile-screen-codebase.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/media/django-user-profile-screen-codebase.png
--------------------------------------------------------------------------------
/nginx/appseed-app.conf:
--------------------------------------------------------------------------------
1 | server {
2 | listen 85;
3 |
4 | location / {
5 | proxy_pass http://localhost:5005/;
6 | proxy_set_header Host $host;
7 | proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
8 | }
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/requirements.txt:
--------------------------------------------------------------------------------
1 | asgiref
2 | autopep8
3 | django==2.2.10
4 | pycodestyle
5 | pytz
6 | sqlparse
7 | Unipath
8 | dj-database-url
9 | python-dotenv
10 | gunicorn
11 | whitenoise
12 | Pillow
13 |
--------------------------------------------------------------------------------
/runtime.txt:
--------------------------------------------------------------------------------
1 | python-3.6
2 |
--------------------------------------------------------------------------------
/staticfiles/.gitkeep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/app-generator/sample-django-extended-user-profile/1612fd0c39faa3168b457c25261e9aadd47cce83/staticfiles/.gitkeep
--------------------------------------------------------------------------------