├── README.md ├── accounting ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── forms.cpython-36.pyc │ ├── models.cpython-36.pyc │ ├── rest_api_views.cpython-36.pyc │ ├── rest_views.cpython-36.pyc │ ├── serializers.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── views.cpython-36.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_transaction_trnsaction_type.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-36.pyc │ │ ├── 0002_transaction_trnsaction_type.cpython-36.pyc │ │ └── __init__.cpython-36.pyc ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── allauth ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── app_settings.cpython-36.pyc │ ├── compat.cpython-36.pyc │ ├── exceptions.cpython-36.pyc │ ├── models.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── utils.cpython-36.pyc ├── account │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── adapter.cpython-36.pyc │ │ ├── admin.cpython-36.pyc │ │ ├── app_settings.cpython-36.pyc │ │ ├── apps.cpython-36.pyc │ │ ├── forms.cpython-36.pyc │ │ ├── managers.cpython-36.pyc │ │ ├── models.cpython-36.pyc │ │ ├── signals.cpython-36.pyc │ │ ├── urls.cpython-36.pyc │ │ ├── utils.cpython-36.pyc │ │ └── views.cpython-36.pyc │ ├── adapter.py │ ├── admin.py │ ├── app_settings.py │ ├── apps.py │ ├── auth_backends.py │ ├── decorators.py │ ├── forms.py │ ├── managers.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-36.pyc │ │ │ └── __init__.cpython-36.pyc │ ├── models.py │ ├── signals.py │ ├── templatetags │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── account.cpython-36.pyc │ │ └── account.py │ ├── tests.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── app_settings.py ├── compat.py ├── exceptions.py ├── locale │ ├── ar │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── cs │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── de │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── el │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── en │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── es │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── fa │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── fi │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── he │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── hr │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── hu │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── it │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ko │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ky │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── lt │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── lv │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── nl │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── pt_PT │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── sk │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── sv │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── th │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── tr │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── uk │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── zh_CN │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── zh_Hans │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── zh_Hant │ │ └── LC_MESSAGES │ │ │ └── django.po │ └── zh_TW │ │ └── LC_MESSAGES │ │ └── django.po ├── models.py ├── socialaccount │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── adapter.cpython-36.pyc │ │ ├── admin.cpython-36.pyc │ │ ├── app_settings.cpython-36.pyc │ │ ├── apps.cpython-36.pyc │ │ ├── fields.cpython-36.pyc │ │ ├── forms.cpython-36.pyc │ │ ├── helpers.cpython-36.pyc │ │ ├── models.cpython-36.pyc │ │ ├── signals.cpython-36.pyc │ │ ├── urls.cpython-36.pyc │ │ └── views.cpython-36.pyc │ ├── adapter.py │ ├── admin.py │ ├── app_settings.py │ ├── apps.py │ ├── fields.py │ ├── forms.py │ ├── helpers.py │ ├── models.py │ ├── providers │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── base.cpython-36.pyc │ │ ├── amazon │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── angellist │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── asana │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── auth0 │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── baidu │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── base.py │ │ ├── basecamp │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── battlenet │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── validators.py │ │ │ └── views.py │ │ ├── bitbucket │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── bitbucket_oauth2 │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── bitly │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── box │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── coinbase │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── daum │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── digitalocean │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── discord │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── douban │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── doximity │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── draugiem │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── dropbox │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── dropbox_oauth2 │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── edmodo │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── eventbrite │ │ │ ├── __init__.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── eveonline │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── evernote │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── facebook │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ ├── data │ │ │ │ └── FacebookLocales.xml │ │ │ ├── forms.py │ │ │ ├── locale.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── static │ │ │ │ └── facebook │ │ │ │ │ └── js │ │ │ │ │ └── fbconnect.js │ │ │ ├── templates │ │ │ │ └── facebook │ │ │ │ │ └── fbconnect.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── feedly │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── fivehundredpx │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── flickr │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── foursquare │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── fxa │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── github │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── gitlab │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── google │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── hubic │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── instagram │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── kakao │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── line │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── linkedin │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── linkedin_oauth2 │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── mailchimp │ │ │ ├── __init__.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── mailru │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── naver │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── oauth │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── oauth2 │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── odnoklassniki │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── openid │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── forms.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ ├── orcid │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── paypal │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── persona │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── templates │ │ │ │ └── persona │ │ │ │ │ └── auth.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── pinterest │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── reddit │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── robinhood │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── shopify │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── slack │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── soundcloud │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── spotify │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── stackexchange │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── stripe │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── tumblr │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── twentythreeandme │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── twitch │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── twitter │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── untappd │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── vimeo │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── vk │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── weibo │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── weixin │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── windowslive │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ └── xing │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── provider.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ ├── signals.py │ ├── templatetags │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── socialaccount.cpython-36.pyc │ │ └── socialaccount.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── templates │ ├── account │ │ ├── account_inactive.html │ │ ├── base.html │ │ ├── email.html │ │ ├── email │ │ │ ├── email_confirmation_message.txt │ │ │ ├── email_confirmation_signup_message.txt │ │ │ ├── email_confirmation_signup_subject.txt │ │ │ ├── email_confirmation_subject.txt │ │ │ ├── password_reset_key_message.txt │ │ │ └── password_reset_key_subject.txt │ │ ├── email_confirm.html │ │ ├── login.html │ │ ├── logout.html │ │ ├── messages │ │ │ ├── cannot_delete_primary_email.txt │ │ │ ├── email_confirmation_sent.txt │ │ │ ├── email_confirmed.txt │ │ │ ├── email_deleted.txt │ │ │ ├── logged_in.txt │ │ │ ├── logged_out.txt │ │ │ ├── password_changed.txt │ │ │ ├── password_set.txt │ │ │ ├── primary_email_set.txt │ │ │ └── unverified_primary_email.txt │ │ ├── password_change.html │ │ ├── password_reset.html │ │ ├── password_reset_done.html │ │ ├── password_reset_from_key.html │ │ ├── password_reset_from_key_done.html │ │ ├── password_set.html │ │ ├── signup.html │ │ ├── signup_closed.html │ │ ├── snippets │ │ │ └── already_logged_in.html │ │ ├── verification_sent.html │ │ └── verified_email_required.html │ ├── base.html │ ├── openid │ │ ├── base.html │ │ └── login.html │ └── socialaccount │ │ ├── authentication_error.html │ │ ├── base.html │ │ ├── connections.html │ │ ├── login_cancelled.html │ │ ├── messages │ │ ├── account_connected.txt │ │ ├── account_connected_other.txt │ │ └── account_disconnected.txt │ │ ├── signup.html │ │ └── snippets │ │ ├── login_extra.html │ │ └── provider_list.html ├── tests.py ├── urls.py └── utils.py ├── attendance ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── models.cpython-36.pyc │ └── urls.cpython-36.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-36.pyc │ │ └── __init__.cpython-36.pyc ├── models.py ├── tests.py ├── urls.py └── views.py ├── crm ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── models.cpython-36.pyc │ └── urls.cpython-36.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20170323_0056.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-36.pyc │ │ ├── 0002_auto_20170323_0056.cpython-36.pyc │ │ └── __init__.cpython-36.pyc ├── models.py ├── tests.py ├── urls.py └── views.py ├── db.sqlite3 ├── erp ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── settings.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── wsgi.cpython-36.pyc ├── settings.py ├── urls.py └── wsgi.py ├── help.txt ├── hr ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── models.cpython-36.pyc │ └── urls.cpython-36.pyc ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20170321_1344.py │ ├── 0003_training_date_to.py │ ├── 0004_remove_employee_is_freedomfighter.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-36.pyc │ │ ├── 0002_auto_20170321_1344.cpython-36.pyc │ │ ├── 0003_training_date_to.cpython-36.pyc │ │ ├── 0004_remove_employee_is_freedomfighter.cpython-36.pyc │ │ └── __init__.cpython-36.pyc ├── models.py ├── tests.py ├── urls.py └── views.py ├── inventory ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── models.cpython-36.pyc │ └── urls.cpython-36.pyc ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20170323_0118.py │ ├── 0003_auto_20170323_0122.py │ ├── 0004_auto_20170323_0130.py │ ├── 0005_auto_20170323_0210.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-36.pyc │ │ ├── 0002_auto_20170323_0118.cpython-36.pyc │ │ ├── 0003_auto_20170323_0122.cpython-36.pyc │ │ ├── 0004_auto_20170323_0130.cpython-36.pyc │ │ ├── 0005_auto_20170323_0210.cpython-36.pyc │ │ └── __init__.cpython-36.pyc ├── models.py ├── tests.py ├── urls.py └── views.py ├── manage.py ├── payroll ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── models.cpython-36.pyc │ └── urls.cpython-36.pyc ├── admin.py ├── apps.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── pos ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── models.cpython-36.pyc │ └── urls.cpython-36.pyc ├── admin.py ├── apps.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── project_management ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── models.cpython-36.pyc │ └── urls.cpython-36.pyc ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-36.pyc │ │ └── __init__.cpython-36.pyc ├── models.py ├── tests.py ├── urls.py └── views.py ├── restapp ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── models.cpython-36.pyc │ ├── serializers.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── views.cpython-36.pyc ├── admin.py ├── apps.py ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-36.pyc ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── static ├── App │ ├── AddController.js │ ├── DeleteController.js │ ├── EditController.js │ ├── Service.js │ └── myApp.js ├── angular-1.5.8 │ ├── angular-animate.js │ ├── angular-animate.min.js │ ├── angular-animate.min.js.map │ ├── angular-aria.js │ ├── angular-aria.min.js │ ├── angular-aria.min.js.map │ ├── angular-cookies.js │ ├── angular-cookies.min.js │ ├── angular-cookies.min.js.map │ ├── angular-csp.css │ ├── angular-loader.js │ ├── angular-loader.min.js │ ├── angular-loader.min.js.map │ ├── angular-message-format.js │ ├── angular-message-format.min.js │ ├── angular-message-format.min.js.map │ ├── angular-messages.js │ ├── angular-messages.min.js │ ├── angular-messages.min.js.map │ ├── angular-mocks.js │ ├── angular-parse-ext.js │ ├── angular-parse-ext.min.js │ ├── angular-parse-ext.min.js.map │ ├── angular-resource.js │ ├── angular-resource.min.js │ ├── angular-resource.min.js.map │ ├── angular-route.js │ ├── angular-route.min.js │ ├── angular-route.min.js.map │ ├── angular-sanitize.js │ ├── angular-sanitize.min.js │ ├── angular-sanitize.min.js.map │ ├── angular-scenario.js │ ├── angular-touch.js │ ├── angular-touch.min.js │ ├── angular-touch.min.js.map │ ├── angular.js │ ├── angular.min.js │ ├── angular.min.js.map │ ├── docs │ │ ├── Error404.html │ │ ├── components │ │ │ ├── bootstrap-3.1.1 │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ └── bootstrap.min.js │ │ │ ├── google-code-prettify-1.0.1 │ │ │ │ ├── CHANGES.html │ │ │ │ ├── COPYING │ │ │ │ ├── README-zh-Hans.html │ │ │ │ ├── README.html │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── src │ │ │ │ │ ├── lang-apollo.js │ │ │ │ │ ├── lang-clj.js │ │ │ │ │ ├── lang-css.js │ │ │ │ │ ├── lang-dart.js │ │ │ │ │ ├── lang-go.js │ │ │ │ │ ├── lang-hs.js │ │ │ │ │ ├── lang-lisp.js │ │ │ │ │ ├── lang-lua.js │ │ │ │ │ ├── lang-ml.js │ │ │ │ │ ├── lang-n.js │ │ │ │ │ ├── lang-proto.js │ │ │ │ │ ├── lang-scala.js │ │ │ │ │ ├── lang-sql.js │ │ │ │ │ ├── lang-tex.js │ │ │ │ │ ├── lang-vb.js │ │ │ │ │ ├── lang-vhdl.js │ │ │ │ │ ├── lang-wiki.js │ │ │ │ │ ├── lang-xq.js │ │ │ │ │ ├── lang-yaml.js │ │ │ │ │ ├── prettify.css │ │ │ │ │ └── prettify.js │ │ │ │ └── styles │ │ │ │ │ ├── demo.html │ │ │ │ │ ├── desert.css │ │ │ │ │ ├── index.html │ │ │ │ │ ├── sons-of-obsidian.css │ │ │ │ │ └── sunburst.css │ │ │ ├── jquery-undefined │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── jquery.slim.js │ │ │ │ └── jquery.slim.min.js │ │ │ ├── lunr.js-0.5.12 │ │ │ │ ├── lunr.js │ │ │ │ ├── lunr.min.js │ │ │ │ └── server.js │ │ │ ├── marked-0.3.5 │ │ │ │ ├── Gulpfile.js │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── marked.js │ │ │ │ └── marked.min.js │ │ │ └── open-sans-fontface-1.0.4 │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── fonts │ │ │ │ ├── Bold │ │ │ │ │ ├── OpenSans-Bold.eot │ │ │ │ │ ├── OpenSans-Bold.svg │ │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ │ └── OpenSans-Bold.woff │ │ │ │ ├── BoldItalic │ │ │ │ │ ├── OpenSans-BoldItalic.eot │ │ │ │ │ ├── OpenSans-BoldItalic.svg │ │ │ │ │ ├── OpenSans-BoldItalic.ttf │ │ │ │ │ └── OpenSans-BoldItalic.woff │ │ │ │ ├── ExtraBold │ │ │ │ │ ├── OpenSans-ExtraBold.eot │ │ │ │ │ ├── OpenSans-ExtraBold.svg │ │ │ │ │ ├── OpenSans-ExtraBold.ttf │ │ │ │ │ └── OpenSans-ExtraBold.woff │ │ │ │ ├── ExtraBoldItalic │ │ │ │ │ ├── OpenSans-ExtraBoldItalic.eot │ │ │ │ │ ├── OpenSans-ExtraBoldItalic.svg │ │ │ │ │ ├── OpenSans-ExtraBoldItalic.ttf │ │ │ │ │ └── OpenSans-ExtraBoldItalic.woff │ │ │ │ ├── Italic │ │ │ │ │ ├── OpenSans-Italic.eot │ │ │ │ │ ├── OpenSans-Italic.svg │ │ │ │ │ ├── OpenSans-Italic.ttf │ │ │ │ │ └── OpenSans-Italic.woff │ │ │ │ ├── Light │ │ │ │ │ ├── OpenSans-Light.eot │ │ │ │ │ ├── OpenSans-Light.svg │ │ │ │ │ ├── OpenSans-Light.ttf │ │ │ │ │ └── OpenSans-Light.woff │ │ │ │ ├── LightItalic │ │ │ │ │ ├── OpenSans-LightItalic.eot │ │ │ │ │ ├── OpenSans-LightItalic.svg │ │ │ │ │ ├── OpenSans-LightItalic.ttf │ │ │ │ │ └── OpenSans-LightItalic.woff │ │ │ │ ├── Regular │ │ │ │ │ ├── OpenSans-Regular.eot │ │ │ │ │ ├── OpenSans-Regular.svg │ │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ │ └── OpenSans-Regular.woff │ │ │ │ ├── Semibold │ │ │ │ │ ├── OpenSans-Semibold.eot │ │ │ │ │ ├── OpenSans-Semibold.svg │ │ │ │ │ ├── OpenSans-Semibold.ttf │ │ │ │ │ └── OpenSans-Semibold.woff │ │ │ │ └── SemiboldItalic │ │ │ │ │ ├── OpenSans-SemiboldItalic.eot │ │ │ │ │ ├── OpenSans-SemiboldItalic.svg │ │ │ │ │ ├── OpenSans-SemiboldItalic.ttf │ │ │ │ │ └── OpenSans-SemiboldItalic.woff │ │ │ │ ├── index.html │ │ │ │ ├── open-sans.css │ │ │ │ ├── open-sans.less │ │ │ │ └── open-sans.scss │ │ ├── css │ │ │ ├── animations.css │ │ │ ├── doc_widgets.css │ │ │ ├── docs.css │ │ │ ├── prettify-theme.css │ │ │ └── prettify.css │ │ ├── examples │ │ │ ├── example-$filter │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-$route-service │ │ │ │ ├── book.html │ │ │ │ ├── chapter.html │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ └── script.js │ │ │ ├── example-NgModelController │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ ├── script.js │ │ │ │ └── style.css │ │ │ ├── example-anchoringExample │ │ │ │ ├── animations.css │ │ │ │ ├── home.html │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── profile.html │ │ │ │ └── script.js │ │ │ ├── example-checkbox-input-directive │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-componentRouter │ │ │ │ ├── app.js │ │ │ │ ├── crisis.js │ │ │ │ ├── crisisDetail.html │ │ │ │ ├── dialog.js │ │ │ │ ├── heroes.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── styles.css │ │ │ ├── example-custom-interpolation-markup │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-date-input-directive │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-datetimelocal-input-directive │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-directive-decorator │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ └── script.js │ │ │ ├── example-doCheckArrayExample │ │ │ │ ├── app.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-doCheckDateExample │ │ │ │ ├── app.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-email-input-directive │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-equalsExample │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-error-$rootScope-inprog │ │ │ │ ├── app.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-example.csp │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ └── script.js │ │ │ ├── example-example │ │ │ │ ├── app.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-example1 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-example10 │ │ │ │ ├── app.css │ │ │ │ ├── app.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-example100 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example101 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example102 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example103 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example104 │ │ │ │ ├── http-hello.html │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ └── script.js │ │ │ ├── example-example105 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-example106 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-example107 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-example108 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ ├── script.js │ │ │ │ └── test_data.json │ │ │ ├── example-example109 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example11 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ └── script.js │ │ │ ├── example-example110 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ └── script.js │ │ │ ├── example-example111 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example112 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-example113 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-example114 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-example12 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-example13 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── my-customer.html │ │ │ │ └── script.js │ │ │ ├── example-example14 │ │ │ │ ├── customer-address.html │ │ │ │ ├── customer-name.html │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-example15 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── my-customer.html │ │ │ │ └── script.js │ │ │ ├── example-example16 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── my-customer.html │ │ │ │ └── script.js │ │ │ ├── example-example17 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── my-customer-iso.html │ │ │ │ └── script.js │ │ │ ├── example-example18 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── my-customer-plus-vojta.html │ │ │ │ └── script.js │ │ │ ├── example-example19 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-example2 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── script.js │ │ │ │ └── style.css │ │ │ ├── example-example20 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── my-dialog.html │ │ │ │ └── script.js │ │ │ ├── example-example21 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── my-dialog.html │ │ │ │ └── script.js │ │ │ ├── example-example22 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── my-dialog-close.html │ │ │ │ └── script.js │ │ │ ├── example-example23 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-example24 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── my-pane.html │ │ │ │ ├── my-tabs.html │ │ │ │ └── script.js │ │ │ ├── example-example25 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example26 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ └── script.js │ │ │ ├── example-example27 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ └── script.js │ │ │ ├── example-example28 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-example29 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ └── script.js │ │ │ ├── example-example3 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-example30 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-example31 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-example32 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-example33 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-example34 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-example35 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-example36 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-example37 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-example38 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-example39 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-example4 │ │ │ │ ├── animations.css │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-example40 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-example41 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ └── script.js │ │ │ ├── example-example42 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ └── script.js │ │ │ ├── example-example43 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-example44 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── script.js │ │ │ │ └── style.css │ │ │ ├── example-example45 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-example46 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ └── script.js │ │ │ ├── example-example47 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-example48 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-example49 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── script.js │ │ │ │ └── style.css │ │ │ ├── example-example5 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── style.css │ │ │ ├── example-example50 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── script.js │ │ │ │ └── style.css │ │ │ ├── example-example51 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── script.js │ │ │ │ └── style.css │ │ │ ├── example-example52 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── script.js │ │ │ │ └── style.css │ │ │ ├── example-example53 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example54 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example55 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example56 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example57 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example58 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example59 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example6 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-example60 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example61 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example62 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example63 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ └── script.js │ │ │ ├── example-example64 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ └── style.css │ │ │ ├── example-example65 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ └── style.css │ │ │ ├── example-example66 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ └── style.css │ │ │ ├── example-example67 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ └── style.css │ │ │ ├── example-example68 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example69 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example7 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── my-pane.html │ │ │ │ ├── my-tabs.html │ │ │ │ └── script.js │ │ │ ├── example-example70 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-example71 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-example72 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-example73 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-example74 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-example75 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-example76 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-example77 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-example78 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-example79 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-example8 │ │ │ │ ├── app.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-example80 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example81 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-example82 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-example83 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-example84 │ │ │ │ ├── animations.css │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-example85 │ │ │ │ ├── animations.css │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ ├── script.js │ │ │ │ ├── template1.html │ │ │ │ └── template2.html │ │ │ ├── example-example86 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example87 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-example88 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example89 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example9 │ │ │ │ ├── app.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-example90 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example91 │ │ │ │ ├── animations.css │ │ │ │ ├── glyphicons.css │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example92 │ │ │ │ ├── animations.css │ │ │ │ ├── glyphicons.css │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example93 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ └── style.css │ │ │ ├── example-example94 │ │ │ │ ├── animations.css │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ └── script.js │ │ │ ├── example-example95 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example96 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example97 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-example98 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-example99 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-filter-decorator │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ └── script.js │ │ │ ├── example-guide-concepts-1 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-guide-concepts-2 │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── invoice1.js │ │ │ │ └── manifest.json │ │ │ ├── example-guide-concepts-21 │ │ │ │ ├── finance2.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── invoice2.js │ │ │ │ └── manifest.json │ │ │ ├── example-guide-concepts-3 │ │ │ │ ├── finance3.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── invoice3.js │ │ │ │ └── manifest.json │ │ │ ├── example-heroComponentSimple │ │ │ │ ├── heroDetail.html │ │ │ │ ├── heroDetail.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── index.js │ │ │ │ └── manifest.json │ │ │ ├── example-heroComponentTree │ │ │ │ ├── editableField.html │ │ │ │ ├── editableField.js │ │ │ │ ├── heroDetail.html │ │ │ │ ├── heroDetail.js │ │ │ │ ├── heroList.html │ │ │ │ ├── heroList.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── index.js │ │ │ │ └── manifest.json │ │ │ ├── example-httpbackend-e2e-testing │ │ │ │ ├── app.js │ │ │ │ ├── e2e.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-input-directive │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-location-hashbang-mode │ │ │ │ ├── addressBar.js │ │ │ │ ├── app.js │ │ │ │ ├── fakeBrowser.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-location-html5-mode │ │ │ │ ├── addressBar.js │ │ │ │ ├── app.js │ │ │ │ ├── fakeBrowser.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-message-format-example │ │ │ │ ├── app.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-month-input-directive │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-multiSlotTranscludeExample │ │ │ │ ├── app.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-ng-model-cancel-update │ │ │ │ ├── app.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── style.css │ │ │ ├── example-ngAnimateChildren │ │ │ │ ├── animations.css │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-ngAnimateSwap-directive │ │ │ │ ├── animations.css │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-ngChange-directive │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-ngController │ │ │ │ ├── app.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-ngControllerAs │ │ │ │ ├── app.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-ngList-directive-newlines │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-ngList-directive │ │ │ │ ├── app.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-ngMaxlengthDirective │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-ngMessageFormat-example-gender │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-ngMessageFormat-example-plural-gender │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-ngMessageFormat-example-plural │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ └── script.js │ │ │ ├── example-ngMessages-directive │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── script.js │ │ │ ├── example-ngMinlengthDirective │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-ngModel-getter-setter │ │ │ │ ├── app.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-ngModelOptions-directive-blur │ │ │ │ ├── app.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-ngModelOptions-directive-debounce │ │ │ │ ├── app.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-ngModelOptions-directive-getter-setter │ │ │ │ ├── app.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-ngPatternDirective │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-ngRepeat │ │ │ │ ├── animations.css │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ └── script.js │ │ │ ├── example-ngRequiredDirective │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-ngValue-directive │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-ngView-directive │ │ │ │ ├── animations.css │ │ │ │ ├── book.html │ │ │ │ ├── chapter.html │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ └── script.js │ │ │ ├── example-ngrepeat-select │ │ │ │ ├── app.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-number-input-directive │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-orderBy-call-manually │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ ├── script.js │ │ │ │ └── style.css │ │ │ ├── example-orderBy-custom-comparator │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ ├── script.js │ │ │ │ └── style.css │ │ │ ├── example-orderBy-dynamic │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ ├── script.js │ │ │ │ └── style.css │ │ │ ├── example-orderBy-static │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ ├── script.js │ │ │ │ └── style.css │ │ │ ├── example-radio-input-directive │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-select-with-default-values │ │ │ │ ├── app.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-select-with-non-string-options │ │ │ │ ├── app.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-service-decorator │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ ├── protractor.js │ │ │ │ ├── script.js │ │ │ │ └── style.css │ │ │ ├── example-simpleTranscludeExample │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-static-select │ │ │ │ ├── app.js │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── example-text-input-directive │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-time-input-directive │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ ├── example-url-input-directive │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ │ └── example-week-input-directive │ │ │ │ ├── index-debug.html │ │ │ │ ├── index-jquery.html │ │ │ │ ├── index-production.html │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── protractor.js │ │ ├── favicon.ico │ │ ├── img │ │ │ ├── AngularJS-small.png │ │ │ ├── One_Way_Data_Binding.png │ │ │ ├── Two_Way_Data_Binding.png │ │ │ ├── angular_parts.png │ │ │ ├── angularjs-for-header-only.svg │ │ │ ├── bullet.png │ │ │ ├── form_data_flow.png │ │ │ ├── glyphicons-halflings-white.png │ │ │ ├── glyphicons-halflings.png │ │ │ ├── guide │ │ │ │ ├── component-based-architecture.svg │ │ │ │ ├── component-hierarchy.svg │ │ │ │ ├── component-routes.svg │ │ │ │ ├── concepts-databinding1.png │ │ │ │ ├── concepts-databinding2.png │ │ │ │ ├── concepts-directive.png │ │ │ │ ├── concepts-module-injector.png │ │ │ │ ├── concepts-module-service.png │ │ │ │ ├── concepts-runtime.png │ │ │ │ ├── concepts-scope-watch-strategies.png │ │ │ │ ├── concepts-scope.png │ │ │ │ ├── concepts-startup.png │ │ │ │ ├── concepts-view.png │ │ │ │ ├── crisis-detail.png │ │ │ │ ├── crisis-list.png │ │ │ │ ├── di_sequence_final.png │ │ │ │ ├── dom_scope_final.png │ │ │ │ ├── forms-debounce.gif │ │ │ │ ├── forms-update-on-blur.gif │ │ │ │ ├── hashbang_vs_regular_url.jpg │ │ │ │ ├── hero-detail.png │ │ │ │ ├── heroes-list.png │ │ │ │ ├── scenario_runner.png │ │ │ │ └── simple_scope_final.png │ │ │ ├── helloworld.png │ │ │ ├── helloworld_2way.png │ │ │ └── tutorial │ │ │ │ ├── catalog_screen.png │ │ │ │ ├── tutorial_00.png │ │ │ │ ├── tutorial_02.png │ │ │ │ ├── tutorial_03.png │ │ │ │ ├── tutorial_05.png │ │ │ │ ├── tutorial_06.png │ │ │ │ ├── tutorial_09.png │ │ │ │ ├── tutorial_10.png │ │ │ │ └── tutorial_12.png │ │ ├── index-debug.html │ │ ├── index-jquery.html │ │ ├── index-production.html │ │ ├── index.html │ │ ├── js │ │ │ ├── angular-bootstrap │ │ │ │ ├── dropdown-toggle.js │ │ │ │ ├── dropdown-toggle.min.js │ │ │ │ └── dropdown-toggle.min.js.map │ │ │ ├── docs.js │ │ │ ├── docs.min.js │ │ │ ├── docs.min.js.map │ │ │ ├── nav-data.js │ │ │ ├── pages-data.js │ │ │ ├── search-data.json │ │ │ ├── search-worker.js │ │ │ ├── search-worker.min.js │ │ │ ├── search-worker.min.js.map │ │ │ └── versions-data.js │ │ ├── partials │ │ │ ├── api.html │ │ │ ├── api │ │ │ │ ├── auto.html │ │ │ │ ├── auto │ │ │ │ │ ├── service.html │ │ │ │ │ └── service │ │ │ │ │ │ ├── $injector.html │ │ │ │ │ │ └── $provide.html │ │ │ │ ├── ng.html │ │ │ │ ├── ng │ │ │ │ │ ├── directive.html │ │ │ │ │ ├── directive │ │ │ │ │ │ ├── a.html │ │ │ │ │ │ ├── form.html │ │ │ │ │ │ ├── input.html │ │ │ │ │ │ ├── ngApp.html │ │ │ │ │ │ ├── ngBind.html │ │ │ │ │ │ ├── ngBindHtml.html │ │ │ │ │ │ ├── ngBindTemplate.html │ │ │ │ │ │ ├── ngBlur.html │ │ │ │ │ │ ├── ngChange.html │ │ │ │ │ │ ├── ngChecked.html │ │ │ │ │ │ ├── ngClass.html │ │ │ │ │ │ ├── ngClassEven.html │ │ │ │ │ │ ├── ngClassOdd.html │ │ │ │ │ │ ├── ngClick.html │ │ │ │ │ │ ├── ngCloak.html │ │ │ │ │ │ ├── ngController.html │ │ │ │ │ │ ├── ngCopy.html │ │ │ │ │ │ ├── ngCsp.html │ │ │ │ │ │ ├── ngCut.html │ │ │ │ │ │ ├── ngDblclick.html │ │ │ │ │ │ ├── ngDisabled.html │ │ │ │ │ │ ├── ngFocus.html │ │ │ │ │ │ ├── ngForm.html │ │ │ │ │ │ ├── ngHide.html │ │ │ │ │ │ ├── ngHref.html │ │ │ │ │ │ ├── ngIf.html │ │ │ │ │ │ ├── ngInclude.html │ │ │ │ │ │ ├── ngInit.html │ │ │ │ │ │ ├── ngJq.html │ │ │ │ │ │ ├── ngKeydown.html │ │ │ │ │ │ ├── ngKeypress.html │ │ │ │ │ │ ├── ngKeyup.html │ │ │ │ │ │ ├── ngList.html │ │ │ │ │ │ ├── ngMaxlength.html │ │ │ │ │ │ ├── ngMinlength.html │ │ │ │ │ │ ├── ngModel.html │ │ │ │ │ │ ├── ngModelOptions.html │ │ │ │ │ │ ├── ngMousedown.html │ │ │ │ │ │ ├── ngMouseenter.html │ │ │ │ │ │ ├── ngMouseleave.html │ │ │ │ │ │ ├── ngMousemove.html │ │ │ │ │ │ ├── ngMouseover.html │ │ │ │ │ │ ├── ngMouseup.html │ │ │ │ │ │ ├── ngNonBindable.html │ │ │ │ │ │ ├── ngOpen.html │ │ │ │ │ │ ├── ngOptions.html │ │ │ │ │ │ ├── ngPaste.html │ │ │ │ │ │ ├── ngPattern.html │ │ │ │ │ │ ├── ngPluralize.html │ │ │ │ │ │ ├── ngReadonly.html │ │ │ │ │ │ ├── ngRepeat.html │ │ │ │ │ │ ├── ngRequired.html │ │ │ │ │ │ ├── ngSelected.html │ │ │ │ │ │ ├── ngShow.html │ │ │ │ │ │ ├── ngSrc.html │ │ │ │ │ │ ├── ngSrcset.html │ │ │ │ │ │ ├── ngStyle.html │ │ │ │ │ │ ├── ngSubmit.html │ │ │ │ │ │ ├── ngSwitch.html │ │ │ │ │ │ ├── ngTransclude.html │ │ │ │ │ │ ├── ngValue.html │ │ │ │ │ │ ├── script.html │ │ │ │ │ │ ├── select.html │ │ │ │ │ │ └── textarea.html │ │ │ │ │ ├── filter.html │ │ │ │ │ ├── filter │ │ │ │ │ │ ├── currency.html │ │ │ │ │ │ ├── date.html │ │ │ │ │ │ ├── filter.html │ │ │ │ │ │ ├── json.html │ │ │ │ │ │ ├── limitTo.html │ │ │ │ │ │ ├── lowercase.html │ │ │ │ │ │ ├── number.html │ │ │ │ │ │ ├── orderBy.html │ │ │ │ │ │ └── uppercase.html │ │ │ │ │ ├── function.html │ │ │ │ │ ├── function │ │ │ │ │ │ ├── angular.bind.html │ │ │ │ │ │ ├── angular.bootstrap.html │ │ │ │ │ │ ├── angular.copy.html │ │ │ │ │ │ ├── angular.element.html │ │ │ │ │ │ ├── angular.equals.html │ │ │ │ │ │ ├── angular.extend.html │ │ │ │ │ │ ├── angular.forEach.html │ │ │ │ │ │ ├── angular.fromJson.html │ │ │ │ │ │ ├── angular.identity.html │ │ │ │ │ │ ├── angular.injector.html │ │ │ │ │ │ ├── angular.isArray.html │ │ │ │ │ │ ├── angular.isDate.html │ │ │ │ │ │ ├── angular.isDefined.html │ │ │ │ │ │ ├── angular.isElement.html │ │ │ │ │ │ ├── angular.isFunction.html │ │ │ │ │ │ ├── angular.isNumber.html │ │ │ │ │ │ ├── angular.isObject.html │ │ │ │ │ │ ├── angular.isString.html │ │ │ │ │ │ ├── angular.isUndefined.html │ │ │ │ │ │ ├── angular.merge.html │ │ │ │ │ │ ├── angular.module.html │ │ │ │ │ │ ├── angular.noop.html │ │ │ │ │ │ ├── angular.reloadWithDebugInfo.html │ │ │ │ │ │ └── angular.toJson.html │ │ │ │ │ ├── input.html │ │ │ │ │ ├── input │ │ │ │ │ │ ├── input[checkbox].html │ │ │ │ │ │ ├── input[date].html │ │ │ │ │ │ ├── input[datetime-local].html │ │ │ │ │ │ ├── input[email].html │ │ │ │ │ │ ├── input[month].html │ │ │ │ │ │ ├── input[number].html │ │ │ │ │ │ ├── input[radio].html │ │ │ │ │ │ ├── input[text].html │ │ │ │ │ │ ├── input[time].html │ │ │ │ │ │ ├── input[url].html │ │ │ │ │ │ └── input[week].html │ │ │ │ │ ├── object.html │ │ │ │ │ ├── object │ │ │ │ │ │ └── angular.version.html │ │ │ │ │ ├── provider.html │ │ │ │ │ ├── provider │ │ │ │ │ │ ├── $anchorScrollProvider.html │ │ │ │ │ │ ├── $animateProvider.html │ │ │ │ │ │ ├── $compileProvider.html │ │ │ │ │ │ ├── $controllerProvider.html │ │ │ │ │ │ ├── $filterProvider.html │ │ │ │ │ │ ├── $httpProvider.html │ │ │ │ │ │ ├── $interpolateProvider.html │ │ │ │ │ │ ├── $locationProvider.html │ │ │ │ │ │ ├── $logProvider.html │ │ │ │ │ │ ├── $parseProvider.html │ │ │ │ │ │ ├── $rootScopeProvider.html │ │ │ │ │ │ ├── $sceDelegateProvider.html │ │ │ │ │ │ ├── $sceProvider.html │ │ │ │ │ │ └── $templateRequestProvider.html │ │ │ │ │ ├── service.html │ │ │ │ │ ├── service │ │ │ │ │ │ ├── $anchorScroll.html │ │ │ │ │ │ ├── $animate.html │ │ │ │ │ │ ├── $animateCss.html │ │ │ │ │ │ ├── $cacheFactory.html │ │ │ │ │ │ ├── $compile.html │ │ │ │ │ │ ├── $controller.html │ │ │ │ │ │ ├── $document.html │ │ │ │ │ │ ├── $exceptionHandler.html │ │ │ │ │ │ ├── $filter.html │ │ │ │ │ │ ├── $http.html │ │ │ │ │ │ ├── $httpBackend.html │ │ │ │ │ │ ├── $httpParamSerializer.html │ │ │ │ │ │ ├── $httpParamSerializerJQLike.html │ │ │ │ │ │ ├── $interpolate.html │ │ │ │ │ │ ├── $interval.html │ │ │ │ │ │ ├── $jsonpCallbacks.html │ │ │ │ │ │ ├── $locale.html │ │ │ │ │ │ ├── $location.html │ │ │ │ │ │ ├── $log.html │ │ │ │ │ │ ├── $parse.html │ │ │ │ │ │ ├── $q.html │ │ │ │ │ │ ├── $rootElement.html │ │ │ │ │ │ ├── $rootScope.html │ │ │ │ │ │ ├── $sce.html │ │ │ │ │ │ ├── $sceDelegate.html │ │ │ │ │ │ ├── $templateCache.html │ │ │ │ │ │ ├── $templateRequest.html │ │ │ │ │ │ ├── $timeout.html │ │ │ │ │ │ ├── $window.html │ │ │ │ │ │ └── $xhrFactory.html │ │ │ │ │ ├── type.html │ │ │ │ │ └── type │ │ │ │ │ │ ├── $cacheFactory.Cache.html │ │ │ │ │ │ ├── $compile.directive.Attributes.html │ │ │ │ │ │ ├── $rootScope.Scope.html │ │ │ │ │ │ ├── angular.Module.html │ │ │ │ │ │ ├── form.FormController.html │ │ │ │ │ │ ├── ngModel.NgModelController.html │ │ │ │ │ │ └── select.SelectController.html │ │ │ │ ├── ngAnimate.html │ │ │ │ ├── ngAnimate │ │ │ │ │ ├── directive.html │ │ │ │ │ ├── directive │ │ │ │ │ │ ├── ngAnimateChildren.html │ │ │ │ │ │ └── ngAnimateSwap.html │ │ │ │ │ ├── service.html │ │ │ │ │ └── service │ │ │ │ │ │ ├── $animate.html │ │ │ │ │ │ └── $animateCss.html │ │ │ │ ├── ngAria.html │ │ │ │ ├── ngAria │ │ │ │ │ ├── provider.html │ │ │ │ │ ├── provider │ │ │ │ │ │ └── $ariaProvider.html │ │ │ │ │ ├── service.html │ │ │ │ │ └── service │ │ │ │ │ │ └── $aria.html │ │ │ │ ├── ngComponentRouter.html │ │ │ │ ├── ngComponentRouter │ │ │ │ │ ├── directive.html │ │ │ │ │ ├── directive │ │ │ │ │ │ └── ngOutlet.html │ │ │ │ │ ├── service.html │ │ │ │ │ ├── service │ │ │ │ │ │ ├── $rootRouter.html │ │ │ │ │ │ └── $routerRootComponent.html │ │ │ │ │ ├── type.html │ │ │ │ │ └── type │ │ │ │ │ │ ├── ChildRouter.html │ │ │ │ │ │ ├── ComponentInstruction.html │ │ │ │ │ │ ├── RootRouter.html │ │ │ │ │ │ ├── RouteDefinition.html │ │ │ │ │ │ ├── RouteParams.html │ │ │ │ │ │ └── Router.html │ │ │ │ ├── ngCookies.html │ │ │ │ ├── ngCookies │ │ │ │ │ ├── provider.html │ │ │ │ │ ├── provider │ │ │ │ │ │ └── $cookiesProvider.html │ │ │ │ │ ├── service.html │ │ │ │ │ └── service │ │ │ │ │ │ ├── $cookieStore.html │ │ │ │ │ │ └── $cookies.html │ │ │ │ ├── ngMessageFormat.html │ │ │ │ ├── ngMessages.html │ │ │ │ ├── ngMessages │ │ │ │ │ ├── directive.html │ │ │ │ │ └── directive │ │ │ │ │ │ ├── ngMessage.html │ │ │ │ │ │ ├── ngMessageExp.html │ │ │ │ │ │ ├── ngMessages.html │ │ │ │ │ │ └── ngMessagesInclude.html │ │ │ │ ├── ngMock.html │ │ │ │ ├── ngMock │ │ │ │ │ ├── function.html │ │ │ │ │ ├── function │ │ │ │ │ │ ├── angular.mock.dump.html │ │ │ │ │ │ ├── angular.mock.inject.html │ │ │ │ │ │ ├── angular.mock.module.html │ │ │ │ │ │ └── angular.mock.module.sharedInjector.html │ │ │ │ │ ├── object.html │ │ │ │ │ ├── object │ │ │ │ │ │ └── angular.mock.html │ │ │ │ │ ├── provider.html │ │ │ │ │ ├── provider │ │ │ │ │ │ └── $exceptionHandlerProvider.html │ │ │ │ │ ├── service.html │ │ │ │ │ ├── service │ │ │ │ │ │ ├── $animate.html │ │ │ │ │ │ ├── $componentController.html │ │ │ │ │ │ ├── $controller.html │ │ │ │ │ │ ├── $exceptionHandler.html │ │ │ │ │ │ ├── $httpBackend.html │ │ │ │ │ │ ├── $interval.html │ │ │ │ │ │ ├── $log.html │ │ │ │ │ │ └── $timeout.html │ │ │ │ │ ├── type.html │ │ │ │ │ └── type │ │ │ │ │ │ ├── $rootScope.Scope.html │ │ │ │ │ │ └── angular.mock.TzDate.html │ │ │ │ ├── ngMockE2E.html │ │ │ │ ├── ngMockE2E │ │ │ │ │ ├── service.html │ │ │ │ │ └── service │ │ │ │ │ │ └── $httpBackend.html │ │ │ │ ├── ngParseExt.html │ │ │ │ ├── ngResource.html │ │ │ │ ├── ngResource │ │ │ │ │ ├── provider.html │ │ │ │ │ ├── provider │ │ │ │ │ │ └── $resourceProvider.html │ │ │ │ │ ├── service.html │ │ │ │ │ └── service │ │ │ │ │ │ └── $resource.html │ │ │ │ ├── ngRoute.html │ │ │ │ ├── ngRoute │ │ │ │ │ ├── directive.html │ │ │ │ │ ├── directive │ │ │ │ │ │ └── ngView.html │ │ │ │ │ ├── provider.html │ │ │ │ │ ├── provider │ │ │ │ │ │ └── $routeProvider.html │ │ │ │ │ ├── service.html │ │ │ │ │ └── service │ │ │ │ │ │ ├── $route.html │ │ │ │ │ │ └── $routeParams.html │ │ │ │ ├── ngSanitize.html │ │ │ │ ├── ngSanitize │ │ │ │ │ ├── filter.html │ │ │ │ │ ├── filter │ │ │ │ │ │ └── linky.html │ │ │ │ │ ├── provider.html │ │ │ │ │ ├── provider │ │ │ │ │ │ └── $sanitizeProvider.html │ │ │ │ │ ├── service.html │ │ │ │ │ └── service │ │ │ │ │ │ └── $sanitize.html │ │ │ │ ├── ngTouch.html │ │ │ │ └── ngTouch │ │ │ │ │ ├── directive.html │ │ │ │ │ ├── directive │ │ │ │ │ ├── ngClick.html │ │ │ │ │ ├── ngSwipeLeft.html │ │ │ │ │ └── ngSwipeRight.html │ │ │ │ │ ├── provider.html │ │ │ │ │ ├── provider │ │ │ │ │ └── $touchProvider.html │ │ │ │ │ ├── service.html │ │ │ │ │ └── service │ │ │ │ │ ├── $swipe.html │ │ │ │ │ └── $touch.html │ │ │ ├── error.html │ │ │ ├── error │ │ │ │ ├── $animate.html │ │ │ │ ├── $animate │ │ │ │ │ ├── nocb.html │ │ │ │ │ └── notcsel.html │ │ │ │ ├── $cacheFactory.html │ │ │ │ ├── $cacheFactory │ │ │ │ │ └── iid.html │ │ │ │ ├── $compile.html │ │ │ │ ├── $compile │ │ │ │ │ ├── baddir.html │ │ │ │ │ ├── ctreq.html │ │ │ │ │ ├── infchng.html │ │ │ │ │ ├── iscp.html │ │ │ │ │ ├── multidir.html │ │ │ │ │ ├── noctrl.html │ │ │ │ │ ├── nodomevents.html │ │ │ │ │ ├── noident.html │ │ │ │ │ ├── nonassign.html │ │ │ │ │ ├── reqslot.html │ │ │ │ │ ├── selmulti.html │ │ │ │ │ ├── tpload.html │ │ │ │ │ ├── tplrt.html │ │ │ │ │ └── uterdir.html │ │ │ │ ├── $controller.html │ │ │ │ ├── $controller │ │ │ │ │ ├── ctrlfmt.html │ │ │ │ │ └── noscp.html │ │ │ │ ├── $http.html │ │ │ │ ├── $http │ │ │ │ │ ├── badreq.html │ │ │ │ │ └── legacy.html │ │ │ │ ├── $injector.html │ │ │ │ ├── $injector │ │ │ │ │ ├── cdep.html │ │ │ │ │ ├── itkn.html │ │ │ │ │ ├── modulerr.html │ │ │ │ │ ├── nomod.html │ │ │ │ │ ├── pget.html │ │ │ │ │ ├── strictdi.html │ │ │ │ │ ├── undef.html │ │ │ │ │ └── unpr.html │ │ │ │ ├── $interpolate.html │ │ │ │ ├── $interpolate │ │ │ │ │ ├── badexpr.html │ │ │ │ │ ├── dupvalue.html │ │ │ │ │ ├── interr.html │ │ │ │ │ ├── logicbug.html │ │ │ │ │ ├── nochgmustache.html │ │ │ │ │ ├── noconcat.html │ │ │ │ │ ├── reqarg.html │ │ │ │ │ ├── reqcomma.html │ │ │ │ │ ├── reqendbrace.html │ │ │ │ │ ├── reqendinterp.html │ │ │ │ │ ├── reqopenbrace.html │ │ │ │ │ ├── reqother.html │ │ │ │ │ ├── unknarg.html │ │ │ │ │ ├── unsafe.html │ │ │ │ │ ├── untermstr.html │ │ │ │ │ └── wantstring.html │ │ │ │ ├── $location.html │ │ │ │ ├── $location │ │ │ │ │ ├── ipthprfx.html │ │ │ │ │ ├── isrcharg.html │ │ │ │ │ ├── nobase.html │ │ │ │ │ └── nostate.html │ │ │ │ ├── $parse.html │ │ │ │ ├── $parse │ │ │ │ │ ├── isecdom.html │ │ │ │ │ ├── isecff.html │ │ │ │ │ ├── isecfld.html │ │ │ │ │ ├── isecfn.html │ │ │ │ │ ├── isecobj.html │ │ │ │ │ ├── isecwindow.html │ │ │ │ │ ├── lexerr.html │ │ │ │ │ ├── syntax.html │ │ │ │ │ └── ueoe.html │ │ │ │ ├── $q.html │ │ │ │ ├── $q │ │ │ │ │ ├── norslvr.html │ │ │ │ │ └── qcycle.html │ │ │ │ ├── $resource.html │ │ │ │ ├── $resource │ │ │ │ │ ├── badargs.html │ │ │ │ │ ├── badcfg.html │ │ │ │ │ ├── badmember.html │ │ │ │ │ └── badname.html │ │ │ │ ├── $rootScope.html │ │ │ │ ├── $rootScope │ │ │ │ │ ├── infdig.html │ │ │ │ │ └── inprog.html │ │ │ │ ├── $sanitize.html │ │ │ │ ├── $sanitize │ │ │ │ │ ├── noinert.html │ │ │ │ │ └── uinput.html │ │ │ │ ├── $sce.html │ │ │ │ ├── $sce │ │ │ │ │ ├── icontext.html │ │ │ │ │ ├── iequirks.html │ │ │ │ │ ├── imatcher.html │ │ │ │ │ ├── insecurl.html │ │ │ │ │ ├── itype.html │ │ │ │ │ ├── iwcard.html │ │ │ │ │ └── unsafe.html │ │ │ │ ├── filter.html │ │ │ │ ├── filter │ │ │ │ │ └── notarray.html │ │ │ │ ├── jqLite.html │ │ │ │ ├── jqLite │ │ │ │ │ ├── nosel.html │ │ │ │ │ ├── offargs.html │ │ │ │ │ └── onargs.html │ │ │ │ ├── linky.html │ │ │ │ ├── linky │ │ │ │ │ └── notstring.html │ │ │ │ ├── ng.html │ │ │ │ ├── ng │ │ │ │ │ ├── areq.html │ │ │ │ │ ├── badname.html │ │ │ │ │ ├── btstrpd.html │ │ │ │ │ ├── cpi.html │ │ │ │ │ ├── cpta.html │ │ │ │ │ ├── cpws.html │ │ │ │ │ └── test.html │ │ │ │ ├── ngModel.html │ │ │ │ ├── ngModel │ │ │ │ │ ├── constexpr.html │ │ │ │ │ ├── datefmt.html │ │ │ │ │ ├── nonassign.html │ │ │ │ │ ├── nopromise.html │ │ │ │ │ └── numfmt.html │ │ │ │ ├── ngOptions.html │ │ │ │ ├── ngOptions │ │ │ │ │ └── iexp.html │ │ │ │ ├── ngPattern.html │ │ │ │ ├── ngPattern │ │ │ │ │ └── noregexp.html │ │ │ │ ├── ngRepeat.html │ │ │ │ ├── ngRepeat │ │ │ │ │ ├── badident.html │ │ │ │ │ ├── dupes.html │ │ │ │ │ ├── iexp.html │ │ │ │ │ └── iidexp.html │ │ │ │ ├── ngTransclude.html │ │ │ │ ├── ngTransclude │ │ │ │ │ └── orphan.html │ │ │ │ ├── orderBy.html │ │ │ │ └── orderBy │ │ │ │ │ └── notarray.html │ │ │ ├── guide.html │ │ │ ├── guide │ │ │ │ ├── $location.html │ │ │ │ ├── accessibility.html │ │ │ │ ├── animations.html │ │ │ │ ├── bootstrap.html │ │ │ │ ├── compiler.html │ │ │ │ ├── component-router.html │ │ │ │ ├── component.html │ │ │ │ ├── concepts.html │ │ │ │ ├── controller.html │ │ │ │ ├── css-styling.html │ │ │ │ ├── databinding.html │ │ │ │ ├── decorators.html │ │ │ │ ├── di.html │ │ │ │ ├── directive.html │ │ │ │ ├── e2e-testing.html │ │ │ │ ├── expression.html │ │ │ │ ├── external-resources.html │ │ │ │ ├── filter.html │ │ │ │ ├── forms.html │ │ │ │ ├── i18n.html │ │ │ │ ├── ie.html │ │ │ │ ├── interpolation.html │ │ │ │ ├── introduction.html │ │ │ │ ├── migration.html │ │ │ │ ├── module.html │ │ │ │ ├── production.html │ │ │ │ ├── providers.html │ │ │ │ ├── scope.html │ │ │ │ ├── security.html │ │ │ │ ├── services.html │ │ │ │ ├── templates.html │ │ │ │ └── unit-testing.html │ │ │ ├── misc.html │ │ │ ├── misc │ │ │ │ ├── contribute.html │ │ │ │ ├── downloading.html │ │ │ │ ├── faq.html │ │ │ │ └── started.html │ │ │ ├── tutorial.html │ │ │ └── tutorial │ │ │ │ ├── step_00.html │ │ │ │ ├── step_01.html │ │ │ │ ├── step_02.html │ │ │ │ ├── step_03.html │ │ │ │ ├── step_04.html │ │ │ │ ├── step_05.html │ │ │ │ ├── step_06.html │ │ │ │ ├── step_07.html │ │ │ │ ├── step_08.html │ │ │ │ ├── step_09.html │ │ │ │ ├── step_10.html │ │ │ │ ├── step_11.html │ │ │ │ ├── step_12.html │ │ │ │ ├── step_13.html │ │ │ │ ├── step_14.html │ │ │ │ └── the_end.html │ │ └── ptore2e │ │ │ ├── example-$route-service │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-NgModelController │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-checkbox-input-directive │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-custom-interpolation-markup │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-date-input-directive │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-datetimelocal-input-directive │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-directive-decorator │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-email-input-directive │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example.csp │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example100 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example101 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example102 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example103 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example104 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example108 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example109 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example11 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example110 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example111 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example25 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example26 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example27 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example29 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example41 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example42 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example46 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example53 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example54 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example55 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example56 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example57 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example58 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example59 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example60 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example61 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example62 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example63 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example64 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example65 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example66 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example67 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example68 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example69 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example80 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example85 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example86 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example88 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example89 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example90 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example91 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example92 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example93 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example94 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example95 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example96 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example98 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-example99 │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-filter-decorator │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-input-directive │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-location-hashbang-mode │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-location-html5-mode │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-month-input-directive │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-multiSlotTranscludeExample │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-ngChange-directive │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-ngController │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-ngControllerAs │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-ngList-directive-newlines │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-ngList-directive │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-ngMaxlengthDirective │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-ngMessageFormat-example-plural │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-ngMinlengthDirective │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-ngModelOptions-directive-blur │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-ngPatternDirective │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-ngRepeat │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-ngRequiredDirective │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-ngValue-directive │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-ngView-directive │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-number-input-directive │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-orderBy-call-manually │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-orderBy-custom-comparator │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-orderBy-dynamic │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-orderBy-static │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-radio-input-directive │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-select-with-non-string-options │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-service-decorator │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-simpleTranscludeExample │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-text-input-directive │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-time-input-directive │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ ├── example-url-input-directive │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ │ │ └── example-week-input-directive │ │ │ ├── default_test.js │ │ │ └── jquery_test.js │ ├── errors.json │ ├── i18n │ │ ├── angular-locale_aa-dj.js │ │ ├── angular-locale_aa-er.js │ │ ├── angular-locale_aa-et.js │ │ ├── angular-locale_aa.js │ │ ├── angular-locale_af-na.js │ │ ├── angular-locale_af-za.js │ │ ├── angular-locale_af.js │ │ ├── angular-locale_agq-cm.js │ │ ├── angular-locale_agq.js │ │ ├── angular-locale_ak-gh.js │ │ ├── angular-locale_ak.js │ │ ├── angular-locale_am-et.js │ │ ├── angular-locale_am.js │ │ ├── angular-locale_ar-001.js │ │ ├── angular-locale_ar-ae.js │ │ ├── angular-locale_ar-bh.js │ │ ├── angular-locale_ar-dj.js │ │ ├── angular-locale_ar-dz.js │ │ ├── angular-locale_ar-eg.js │ │ ├── angular-locale_ar-eh.js │ │ ├── angular-locale_ar-er.js │ │ ├── angular-locale_ar-il.js │ │ ├── angular-locale_ar-iq.js │ │ ├── angular-locale_ar-jo.js │ │ ├── angular-locale_ar-km.js │ │ ├── angular-locale_ar-kw.js │ │ ├── angular-locale_ar-lb.js │ │ ├── angular-locale_ar-ly.js │ │ ├── angular-locale_ar-ma.js │ │ ├── angular-locale_ar-mr.js │ │ ├── angular-locale_ar-om.js │ │ ├── angular-locale_ar-ps.js │ │ ├── angular-locale_ar-qa.js │ │ ├── angular-locale_ar-sa.js │ │ ├── angular-locale_ar-sd.js │ │ ├── angular-locale_ar-so.js │ │ ├── angular-locale_ar-ss.js │ │ ├── angular-locale_ar-sy.js │ │ ├── angular-locale_ar-td.js │ │ ├── angular-locale_ar-tn.js │ │ ├── angular-locale_ar-ye.js │ │ ├── angular-locale_ar.js │ │ ├── angular-locale_as-in.js │ │ ├── angular-locale_as.js │ │ ├── angular-locale_asa-tz.js │ │ ├── angular-locale_asa.js │ │ ├── angular-locale_ast-es.js │ │ ├── angular-locale_ast.js │ │ ├── angular-locale_az-cyrl-az.js │ │ ├── angular-locale_az-cyrl.js │ │ ├── angular-locale_az-latn-az.js │ │ ├── angular-locale_az-latn.js │ │ ├── angular-locale_az.js │ │ ├── angular-locale_bas-cm.js │ │ ├── angular-locale_bas.js │ │ ├── angular-locale_be-by.js │ │ ├── angular-locale_be.js │ │ ├── angular-locale_bem-zm.js │ │ ├── angular-locale_bem.js │ │ ├── angular-locale_bez-tz.js │ │ ├── angular-locale_bez.js │ │ ├── angular-locale_bg-bg.js │ │ ├── angular-locale_bg.js │ │ ├── angular-locale_bm-latn-ml.js │ │ ├── angular-locale_bm-latn.js │ │ ├── angular-locale_bm-ml.js │ │ ├── angular-locale_bm.js │ │ ├── angular-locale_bn-bd.js │ │ ├── angular-locale_bn-in.js │ │ ├── angular-locale_bn.js │ │ ├── angular-locale_bo-cn.js │ │ ├── angular-locale_bo-in.js │ │ ├── angular-locale_bo.js │ │ ├── angular-locale_br-fr.js │ │ ├── angular-locale_br.js │ │ ├── angular-locale_brx-in.js │ │ ├── angular-locale_brx.js │ │ ├── angular-locale_bs-cyrl-ba.js │ │ ├── angular-locale_bs-cyrl.js │ │ ├── angular-locale_bs-latn-ba.js │ │ ├── angular-locale_bs-latn.js │ │ ├── angular-locale_bs.js │ │ ├── angular-locale_byn-er.js │ │ ├── angular-locale_byn.js │ │ ├── angular-locale_ca-ad.js │ │ ├── angular-locale_ca-es-valencia.js │ │ ├── angular-locale_ca-es.js │ │ ├── angular-locale_ca-fr.js │ │ ├── angular-locale_ca-it.js │ │ ├── angular-locale_ca.js │ │ ├── angular-locale_cgg-ug.js │ │ ├── angular-locale_cgg.js │ │ ├── angular-locale_chr-us.js │ │ ├── angular-locale_chr.js │ │ ├── angular-locale_ckb-arab-iq.js │ │ ├── angular-locale_ckb-arab-ir.js │ │ ├── angular-locale_ckb-arab.js │ │ ├── angular-locale_ckb-iq.js │ │ ├── angular-locale_ckb-ir.js │ │ ├── angular-locale_ckb-latn-iq.js │ │ ├── angular-locale_ckb-latn.js │ │ ├── angular-locale_ckb.js │ │ ├── angular-locale_cs-cz.js │ │ ├── angular-locale_cs.js │ │ ├── angular-locale_cy-gb.js │ │ ├── angular-locale_cy.js │ │ ├── angular-locale_da-dk.js │ │ ├── angular-locale_da-gl.js │ │ ├── angular-locale_da.js │ │ ├── angular-locale_dav-ke.js │ │ ├── angular-locale_dav.js │ │ ├── angular-locale_de-at.js │ │ ├── angular-locale_de-be.js │ │ ├── angular-locale_de-ch.js │ │ ├── angular-locale_de-de.js │ │ ├── angular-locale_de-li.js │ │ ├── angular-locale_de-lu.js │ │ ├── angular-locale_de.js │ │ ├── angular-locale_dje-ne.js │ │ ├── angular-locale_dje.js │ │ ├── angular-locale_dsb-de.js │ │ ├── angular-locale_dsb.js │ │ ├── angular-locale_dua-cm.js │ │ ├── angular-locale_dua.js │ │ ├── angular-locale_dyo-sn.js │ │ ├── angular-locale_dyo.js │ │ ├── angular-locale_dz-bt.js │ │ ├── angular-locale_dz.js │ │ ├── angular-locale_ebu-ke.js │ │ ├── angular-locale_ebu.js │ │ ├── angular-locale_ee-gh.js │ │ ├── angular-locale_ee-tg.js │ │ ├── angular-locale_ee.js │ │ ├── angular-locale_el-cy.js │ │ ├── angular-locale_el-gr.js │ │ ├── angular-locale_el.js │ │ ├── angular-locale_en-001.js │ │ ├── angular-locale_en-150.js │ │ ├── angular-locale_en-ag.js │ │ ├── angular-locale_en-ai.js │ │ ├── angular-locale_en-as.js │ │ ├── angular-locale_en-au.js │ │ ├── angular-locale_en-bb.js │ │ ├── angular-locale_en-be.js │ │ ├── angular-locale_en-bm.js │ │ ├── angular-locale_en-bs.js │ │ ├── angular-locale_en-bw.js │ │ ├── angular-locale_en-bz.js │ │ ├── angular-locale_en-ca.js │ │ ├── angular-locale_en-cc.js │ │ ├── angular-locale_en-ck.js │ │ ├── angular-locale_en-cm.js │ │ ├── angular-locale_en-cx.js │ │ ├── angular-locale_en-dg.js │ │ ├── angular-locale_en-dm.js │ │ ├── angular-locale_en-er.js │ │ ├── angular-locale_en-fj.js │ │ ├── angular-locale_en-fk.js │ │ ├── angular-locale_en-fm.js │ │ ├── angular-locale_en-gb.js │ │ ├── angular-locale_en-gd.js │ │ ├── angular-locale_en-gg.js │ │ ├── angular-locale_en-gh.js │ │ ├── angular-locale_en-gi.js │ │ ├── angular-locale_en-gm.js │ │ ├── angular-locale_en-gu.js │ │ ├── angular-locale_en-gy.js │ │ ├── angular-locale_en-hk.js │ │ ├── angular-locale_en-ie.js │ │ ├── angular-locale_en-im.js │ │ ├── angular-locale_en-in.js │ │ ├── angular-locale_en-io.js │ │ ├── angular-locale_en-iso.js │ │ ├── angular-locale_en-je.js │ │ ├── angular-locale_en-jm.js │ │ ├── angular-locale_en-ke.js │ │ ├── angular-locale_en-ki.js │ │ ├── angular-locale_en-kn.js │ │ ├── angular-locale_en-ky.js │ │ ├── angular-locale_en-lc.js │ │ ├── angular-locale_en-lr.js │ │ ├── angular-locale_en-ls.js │ │ ├── angular-locale_en-mg.js │ │ ├── angular-locale_en-mh.js │ │ ├── angular-locale_en-mo.js │ │ ├── angular-locale_en-mp.js │ │ ├── angular-locale_en-ms.js │ │ ├── angular-locale_en-mt.js │ │ ├── angular-locale_en-mu.js │ │ ├── angular-locale_en-mw.js │ │ ├── angular-locale_en-my.js │ │ ├── angular-locale_en-na.js │ │ ├── angular-locale_en-nf.js │ │ ├── angular-locale_en-ng.js │ │ ├── angular-locale_en-nr.js │ │ ├── angular-locale_en-nu.js │ │ ├── angular-locale_en-nz.js │ │ ├── angular-locale_en-pg.js │ │ ├── angular-locale_en-ph.js │ │ ├── angular-locale_en-pk.js │ │ ├── angular-locale_en-pn.js │ │ ├── angular-locale_en-pr.js │ │ ├── angular-locale_en-pw.js │ │ ├── angular-locale_en-rw.js │ │ ├── angular-locale_en-sb.js │ │ ├── angular-locale_en-sc.js │ │ ├── angular-locale_en-sd.js │ │ ├── angular-locale_en-sg.js │ │ ├── angular-locale_en-sh.js │ │ ├── angular-locale_en-sl.js │ │ ├── angular-locale_en-ss.js │ │ ├── angular-locale_en-sx.js │ │ ├── angular-locale_en-sz.js │ │ ├── angular-locale_en-tc.js │ │ ├── angular-locale_en-tk.js │ │ ├── angular-locale_en-to.js │ │ ├── angular-locale_en-tt.js │ │ ├── angular-locale_en-tv.js │ │ ├── angular-locale_en-tz.js │ │ ├── angular-locale_en-ug.js │ │ ├── angular-locale_en-um.js │ │ ├── angular-locale_en-us.js │ │ ├── angular-locale_en-vc.js │ │ ├── angular-locale_en-vg.js │ │ ├── angular-locale_en-vi.js │ │ ├── angular-locale_en-vu.js │ │ ├── angular-locale_en-ws.js │ │ ├── angular-locale_en-za.js │ │ ├── angular-locale_en-zm.js │ │ ├── angular-locale_en-zw.js │ │ ├── angular-locale_en.js │ │ ├── angular-locale_eo-001.js │ │ ├── angular-locale_eo.js │ │ ├── angular-locale_es-419.js │ │ ├── angular-locale_es-ar.js │ │ ├── angular-locale_es-bo.js │ │ ├── angular-locale_es-cl.js │ │ ├── angular-locale_es-co.js │ │ ├── angular-locale_es-cr.js │ │ ├── angular-locale_es-cu.js │ │ ├── angular-locale_es-do.js │ │ ├── angular-locale_es-ea.js │ │ ├── angular-locale_es-ec.js │ │ ├── angular-locale_es-es.js │ │ ├── angular-locale_es-gq.js │ │ ├── angular-locale_es-gt.js │ │ ├── angular-locale_es-hn.js │ │ ├── angular-locale_es-ic.js │ │ ├── angular-locale_es-mx.js │ │ ├── angular-locale_es-ni.js │ │ ├── angular-locale_es-pa.js │ │ ├── angular-locale_es-pe.js │ │ ├── angular-locale_es-ph.js │ │ ├── angular-locale_es-pr.js │ │ ├── angular-locale_es-py.js │ │ ├── angular-locale_es-sv.js │ │ ├── angular-locale_es-us.js │ │ ├── angular-locale_es-uy.js │ │ ├── angular-locale_es-ve.js │ │ ├── angular-locale_es.js │ │ ├── angular-locale_et-ee.js │ │ ├── angular-locale_et.js │ │ ├── angular-locale_eu-es.js │ │ ├── angular-locale_eu.js │ │ ├── angular-locale_ewo-cm.js │ │ ├── angular-locale_ewo.js │ │ ├── angular-locale_fa-af.js │ │ ├── angular-locale_fa-ir.js │ │ ├── angular-locale_fa.js │ │ ├── angular-locale_ff-cm.js │ │ ├── angular-locale_ff-gn.js │ │ ├── angular-locale_ff-mr.js │ │ ├── angular-locale_ff-sn.js │ │ ├── angular-locale_ff.js │ │ ├── angular-locale_fi-fi.js │ │ ├── angular-locale_fi.js │ │ ├── angular-locale_fil-ph.js │ │ ├── angular-locale_fil.js │ │ ├── angular-locale_fo-fo.js │ │ ├── angular-locale_fo.js │ │ ├── angular-locale_fr-be.js │ │ ├── angular-locale_fr-bf.js │ │ ├── angular-locale_fr-bi.js │ │ ├── angular-locale_fr-bj.js │ │ ├── angular-locale_fr-bl.js │ │ ├── angular-locale_fr-ca.js │ │ ├── angular-locale_fr-cd.js │ │ ├── angular-locale_fr-cf.js │ │ ├── angular-locale_fr-cg.js │ │ ├── angular-locale_fr-ch.js │ │ ├── angular-locale_fr-ci.js │ │ ├── angular-locale_fr-cm.js │ │ ├── angular-locale_fr-dj.js │ │ ├── angular-locale_fr-dz.js │ │ ├── angular-locale_fr-fr.js │ │ ├── angular-locale_fr-ga.js │ │ ├── angular-locale_fr-gf.js │ │ ├── angular-locale_fr-gn.js │ │ ├── angular-locale_fr-gp.js │ │ ├── angular-locale_fr-gq.js │ │ ├── angular-locale_fr-ht.js │ │ ├── angular-locale_fr-km.js │ │ ├── angular-locale_fr-lu.js │ │ ├── angular-locale_fr-ma.js │ │ ├── angular-locale_fr-mc.js │ │ ├── angular-locale_fr-mf.js │ │ ├── angular-locale_fr-mg.js │ │ ├── angular-locale_fr-ml.js │ │ ├── angular-locale_fr-mq.js │ │ ├── angular-locale_fr-mr.js │ │ ├── angular-locale_fr-mu.js │ │ ├── angular-locale_fr-nc.js │ │ ├── angular-locale_fr-ne.js │ │ ├── angular-locale_fr-pf.js │ │ ├── angular-locale_fr-pm.js │ │ ├── angular-locale_fr-re.js │ │ ├── angular-locale_fr-rw.js │ │ ├── angular-locale_fr-sc.js │ │ ├── angular-locale_fr-sn.js │ │ ├── angular-locale_fr-sy.js │ │ ├── angular-locale_fr-td.js │ │ ├── angular-locale_fr-tg.js │ │ ├── angular-locale_fr-tn.js │ │ ├── angular-locale_fr-vu.js │ │ ├── angular-locale_fr-wf.js │ │ ├── angular-locale_fr-yt.js │ │ ├── angular-locale_fr.js │ │ ├── angular-locale_fur-it.js │ │ ├── angular-locale_fur.js │ │ ├── angular-locale_fy-nl.js │ │ ├── angular-locale_fy.js │ │ ├── angular-locale_ga-ie.js │ │ ├── angular-locale_ga.js │ │ ├── angular-locale_gd-gb.js │ │ ├── angular-locale_gd.js │ │ ├── angular-locale_gl-es.js │ │ ├── angular-locale_gl.js │ │ ├── angular-locale_gsw-ch.js │ │ ├── angular-locale_gsw-fr.js │ │ ├── angular-locale_gsw-li.js │ │ ├── angular-locale_gsw.js │ │ ├── angular-locale_gu-in.js │ │ ├── angular-locale_gu.js │ │ ├── angular-locale_guz-ke.js │ │ ├── angular-locale_guz.js │ │ ├── angular-locale_gv-im.js │ │ ├── angular-locale_gv.js │ │ ├── angular-locale_ha-latn-gh.js │ │ ├── angular-locale_ha-latn-ne.js │ │ ├── angular-locale_ha-latn-ng.js │ │ ├── angular-locale_ha-latn.js │ │ ├── angular-locale_ha.js │ │ ├── angular-locale_haw-us.js │ │ ├── angular-locale_haw.js │ │ ├── angular-locale_he-il.js │ │ ├── angular-locale_he.js │ │ ├── angular-locale_hi-in.js │ │ ├── angular-locale_hi.js │ │ ├── angular-locale_hr-ba.js │ │ ├── angular-locale_hr-hr.js │ │ ├── angular-locale_hr.js │ │ ├── angular-locale_hsb-de.js │ │ ├── angular-locale_hsb.js │ │ ├── angular-locale_hu-hu.js │ │ ├── angular-locale_hu.js │ │ ├── angular-locale_hy-am.js │ │ ├── angular-locale_hy.js │ │ ├── angular-locale_ia-fr.js │ │ ├── angular-locale_ia.js │ │ ├── angular-locale_id-id.js │ │ ├── angular-locale_id.js │ │ ├── angular-locale_ig-ng.js │ │ ├── angular-locale_ig.js │ │ ├── angular-locale_ii-cn.js │ │ ├── angular-locale_ii.js │ │ ├── angular-locale_in.js │ │ ├── angular-locale_is-is.js │ │ ├── angular-locale_is.js │ │ ├── angular-locale_it-ch.js │ │ ├── angular-locale_it-it.js │ │ ├── angular-locale_it-sm.js │ │ ├── angular-locale_it.js │ │ ├── angular-locale_iw.js │ │ ├── angular-locale_ja-jp.js │ │ ├── angular-locale_ja.js │ │ ├── angular-locale_jgo-cm.js │ │ ├── angular-locale_jgo.js │ │ ├── angular-locale_jmc-tz.js │ │ ├── angular-locale_jmc.js │ │ ├── angular-locale_ka-ge.js │ │ ├── angular-locale_ka.js │ │ ├── angular-locale_kab-dz.js │ │ ├── angular-locale_kab.js │ │ ├── angular-locale_kam-ke.js │ │ ├── angular-locale_kam.js │ │ ├── angular-locale_kde-tz.js │ │ ├── angular-locale_kde.js │ │ ├── angular-locale_kea-cv.js │ │ ├── angular-locale_kea.js │ │ ├── angular-locale_khq-ml.js │ │ ├── angular-locale_khq.js │ │ ├── angular-locale_ki-ke.js │ │ ├── angular-locale_ki.js │ │ ├── angular-locale_kk-cyrl-kz.js │ │ ├── angular-locale_kk-cyrl.js │ │ ├── angular-locale_kk.js │ │ ├── angular-locale_kkj-cm.js │ │ ├── angular-locale_kkj.js │ │ ├── angular-locale_kl-gl.js │ │ ├── angular-locale_kl.js │ │ ├── angular-locale_kln-ke.js │ │ ├── angular-locale_kln.js │ │ ├── angular-locale_km-kh.js │ │ ├── angular-locale_km.js │ │ ├── angular-locale_kn-in.js │ │ ├── angular-locale_kn.js │ │ ├── angular-locale_ko-kp.js │ │ ├── angular-locale_ko-kr.js │ │ ├── angular-locale_ko.js │ │ ├── angular-locale_kok-in.js │ │ ├── angular-locale_kok.js │ │ ├── angular-locale_ks-arab-in.js │ │ ├── angular-locale_ks-arab.js │ │ ├── angular-locale_ks.js │ │ ├── angular-locale_ksb-tz.js │ │ ├── angular-locale_ksb.js │ │ ├── angular-locale_ksf-cm.js │ │ ├── angular-locale_ksf.js │ │ ├── angular-locale_ksh-de.js │ │ ├── angular-locale_ksh.js │ │ ├── angular-locale_kw-gb.js │ │ ├── angular-locale_kw.js │ │ ├── angular-locale_ky-cyrl-kg.js │ │ ├── angular-locale_ky-cyrl.js │ │ ├── angular-locale_ky.js │ │ ├── angular-locale_lag-tz.js │ │ ├── angular-locale_lag.js │ │ ├── angular-locale_lb-lu.js │ │ ├── angular-locale_lb.js │ │ ├── angular-locale_lg-ug.js │ │ ├── angular-locale_lg.js │ │ ├── angular-locale_lkt-us.js │ │ ├── angular-locale_lkt.js │ │ ├── angular-locale_ln-ao.js │ │ ├── angular-locale_ln-cd.js │ │ ├── angular-locale_ln-cf.js │ │ ├── angular-locale_ln-cg.js │ │ ├── angular-locale_ln.js │ │ ├── angular-locale_lo-la.js │ │ ├── angular-locale_lo.js │ │ ├── angular-locale_lt-lt.js │ │ ├── angular-locale_lt.js │ │ ├── angular-locale_lu-cd.js │ │ ├── angular-locale_lu.js │ │ ├── angular-locale_luo-ke.js │ │ ├── angular-locale_luo.js │ │ ├── angular-locale_luy-ke.js │ │ ├── angular-locale_luy.js │ │ ├── angular-locale_lv-lv.js │ │ ├── angular-locale_lv.js │ │ ├── angular-locale_mas-ke.js │ │ ├── angular-locale_mas-tz.js │ │ ├── angular-locale_mas.js │ │ ├── angular-locale_mer-ke.js │ │ ├── angular-locale_mer.js │ │ ├── angular-locale_mfe-mu.js │ │ ├── angular-locale_mfe.js │ │ ├── angular-locale_mg-mg.js │ │ ├── angular-locale_mg.js │ │ ├── angular-locale_mgh-mz.js │ │ ├── angular-locale_mgh.js │ │ ├── angular-locale_mgo-cm.js │ │ ├── angular-locale_mgo.js │ │ ├── angular-locale_mk-mk.js │ │ ├── angular-locale_mk.js │ │ ├── angular-locale_ml-in.js │ │ ├── angular-locale_ml.js │ │ ├── angular-locale_mn-cyrl-mn.js │ │ ├── angular-locale_mn-cyrl.js │ │ ├── angular-locale_mn.js │ │ ├── angular-locale_mr-in.js │ │ ├── angular-locale_mr.js │ │ ├── angular-locale_ms-latn-bn.js │ │ ├── angular-locale_ms-latn-my.js │ │ ├── angular-locale_ms-latn-sg.js │ │ ├── angular-locale_ms-latn.js │ │ ├── angular-locale_ms.js │ │ ├── angular-locale_mt-mt.js │ │ ├── angular-locale_mt.js │ │ ├── angular-locale_mua-cm.js │ │ ├── angular-locale_mua.js │ │ ├── angular-locale_my-mm.js │ │ ├── angular-locale_my.js │ │ ├── angular-locale_naq-na.js │ │ ├── angular-locale_naq.js │ │ ├── angular-locale_nb-no.js │ │ ├── angular-locale_nb-sj.js │ │ ├── angular-locale_nb.js │ │ ├── angular-locale_nd-zw.js │ │ ├── angular-locale_nd.js │ │ ├── angular-locale_ne-in.js │ │ ├── angular-locale_ne-np.js │ │ ├── angular-locale_ne.js │ │ ├── angular-locale_nl-aw.js │ │ ├── angular-locale_nl-be.js │ │ ├── angular-locale_nl-bq.js │ │ ├── angular-locale_nl-cw.js │ │ ├── angular-locale_nl-nl.js │ │ ├── angular-locale_nl-sr.js │ │ ├── angular-locale_nl-sx.js │ │ ├── angular-locale_nl.js │ │ ├── angular-locale_nmg-cm.js │ │ ├── angular-locale_nmg.js │ │ ├── angular-locale_nn-no.js │ │ ├── angular-locale_nn.js │ │ ├── angular-locale_nnh-cm.js │ │ ├── angular-locale_nnh.js │ │ ├── angular-locale_no-no.js │ │ ├── angular-locale_no.js │ │ ├── angular-locale_nr-za.js │ │ ├── angular-locale_nr.js │ │ ├── angular-locale_nso-za.js │ │ ├── angular-locale_nso.js │ │ ├── angular-locale_nus-sd.js │ │ ├── angular-locale_nus.js │ │ ├── angular-locale_nyn-ug.js │ │ ├── angular-locale_nyn.js │ │ ├── angular-locale_om-et.js │ │ ├── angular-locale_om-ke.js │ │ ├── angular-locale_om.js │ │ ├── angular-locale_or-in.js │ │ ├── angular-locale_or.js │ │ ├── angular-locale_os-ge.js │ │ ├── angular-locale_os-ru.js │ │ ├── angular-locale_os.js │ │ ├── angular-locale_pa-arab-pk.js │ │ ├── angular-locale_pa-arab.js │ │ ├── angular-locale_pa-guru-in.js │ │ ├── angular-locale_pa-guru.js │ │ ├── angular-locale_pa.js │ │ ├── angular-locale_pl-pl.js │ │ ├── angular-locale_pl.js │ │ ├── angular-locale_ps-af.js │ │ ├── angular-locale_ps.js │ │ ├── angular-locale_pt-ao.js │ │ ├── angular-locale_pt-br.js │ │ ├── angular-locale_pt-cv.js │ │ ├── angular-locale_pt-gw.js │ │ ├── angular-locale_pt-mo.js │ │ ├── angular-locale_pt-mz.js │ │ ├── angular-locale_pt-pt.js │ │ ├── angular-locale_pt-st.js │ │ ├── angular-locale_pt-tl.js │ │ ├── angular-locale_pt.js │ │ ├── angular-locale_qu-bo.js │ │ ├── angular-locale_qu-ec.js │ │ ├── angular-locale_qu-pe.js │ │ ├── angular-locale_qu.js │ │ ├── angular-locale_rm-ch.js │ │ ├── angular-locale_rm.js │ │ ├── angular-locale_rn-bi.js │ │ ├── angular-locale_rn.js │ │ ├── angular-locale_ro-md.js │ │ ├── angular-locale_ro-ro.js │ │ ├── angular-locale_ro.js │ │ ├── angular-locale_rof-tz.js │ │ ├── angular-locale_rof.js │ │ ├── angular-locale_ru-by.js │ │ ├── angular-locale_ru-kg.js │ │ ├── angular-locale_ru-kz.js │ │ ├── angular-locale_ru-md.js │ │ ├── angular-locale_ru-ru.js │ │ ├── angular-locale_ru-ua.js │ │ ├── angular-locale_ru.js │ │ ├── angular-locale_rw-rw.js │ │ ├── angular-locale_rw.js │ │ ├── angular-locale_rwk-tz.js │ │ ├── angular-locale_rwk.js │ │ ├── angular-locale_sah-ru.js │ │ ├── angular-locale_sah.js │ │ ├── angular-locale_saq-ke.js │ │ ├── angular-locale_saq.js │ │ ├── angular-locale_sbp-tz.js │ │ ├── angular-locale_sbp.js │ │ ├── angular-locale_se-fi.js │ │ ├── angular-locale_se-no.js │ │ ├── angular-locale_se-se.js │ │ ├── angular-locale_se.js │ │ ├── angular-locale_seh-mz.js │ │ ├── angular-locale_seh.js │ │ ├── angular-locale_ses-ml.js │ │ ├── angular-locale_ses.js │ │ ├── angular-locale_sg-cf.js │ │ ├── angular-locale_sg.js │ │ ├── angular-locale_shi-latn-ma.js │ │ ├── angular-locale_shi-latn.js │ │ ├── angular-locale_shi-tfng-ma.js │ │ ├── angular-locale_shi-tfng.js │ │ ├── angular-locale_shi.js │ │ ├── angular-locale_si-lk.js │ │ ├── angular-locale_si.js │ │ ├── angular-locale_sk-sk.js │ │ ├── angular-locale_sk.js │ │ ├── angular-locale_sl-si.js │ │ ├── angular-locale_sl.js │ │ ├── angular-locale_smn-fi.js │ │ ├── angular-locale_smn.js │ │ ├── angular-locale_sn-zw.js │ │ ├── angular-locale_sn.js │ │ ├── angular-locale_so-dj.js │ │ ├── angular-locale_so-et.js │ │ ├── angular-locale_so-ke.js │ │ ├── angular-locale_so-so.js │ │ ├── angular-locale_so.js │ │ ├── angular-locale_sq-al.js │ │ ├── angular-locale_sq-mk.js │ │ ├── angular-locale_sq-xk.js │ │ ├── angular-locale_sq.js │ │ ├── angular-locale_sr-cyrl-ba.js │ │ ├── angular-locale_sr-cyrl-me.js │ │ ├── angular-locale_sr-cyrl-rs.js │ │ ├── angular-locale_sr-cyrl-xk.js │ │ ├── angular-locale_sr-cyrl.js │ │ ├── angular-locale_sr-latn-ba.js │ │ ├── angular-locale_sr-latn-me.js │ │ ├── angular-locale_sr-latn-rs.js │ │ ├── angular-locale_sr-latn-xk.js │ │ ├── angular-locale_sr-latn.js │ │ ├── angular-locale_sr.js │ │ ├── angular-locale_ss-sz.js │ │ ├── angular-locale_ss-za.js │ │ ├── angular-locale_ss.js │ │ ├── angular-locale_ssy-er.js │ │ ├── angular-locale_ssy.js │ │ ├── angular-locale_st-ls.js │ │ ├── angular-locale_st-za.js │ │ ├── angular-locale_st.js │ │ ├── angular-locale_sv-ax.js │ │ ├── angular-locale_sv-fi.js │ │ ├── angular-locale_sv-se.js │ │ ├── angular-locale_sv.js │ │ ├── angular-locale_sw-cd.js │ │ ├── angular-locale_sw-ke.js │ │ ├── angular-locale_sw-tz.js │ │ ├── angular-locale_sw-ug.js │ │ ├── angular-locale_sw.js │ │ ├── angular-locale_swc-cd.js │ │ ├── angular-locale_swc.js │ │ ├── angular-locale_ta-in.js │ │ ├── angular-locale_ta-lk.js │ │ ├── angular-locale_ta-my.js │ │ ├── angular-locale_ta-sg.js │ │ ├── angular-locale_ta.js │ │ ├── angular-locale_te-in.js │ │ ├── angular-locale_te.js │ │ ├── angular-locale_teo-ke.js │ │ ├── angular-locale_teo-ug.js │ │ ├── angular-locale_teo.js │ │ ├── angular-locale_tg-cyrl-tj.js │ │ ├── angular-locale_tg-cyrl.js │ │ ├── angular-locale_tg.js │ │ ├── angular-locale_th-th.js │ │ ├── angular-locale_th.js │ │ ├── angular-locale_ti-er.js │ │ ├── angular-locale_ti-et.js │ │ ├── angular-locale_ti.js │ │ ├── angular-locale_tig-er.js │ │ ├── angular-locale_tig.js │ │ ├── angular-locale_tl.js │ │ ├── angular-locale_tn-bw.js │ │ ├── angular-locale_tn-za.js │ │ ├── angular-locale_tn.js │ │ ├── angular-locale_to-to.js │ │ ├── angular-locale_to.js │ │ ├── angular-locale_tr-cy.js │ │ ├── angular-locale_tr-tr.js │ │ ├── angular-locale_tr.js │ │ ├── angular-locale_ts-za.js │ │ ├── angular-locale_ts.js │ │ ├── angular-locale_twq-ne.js │ │ ├── angular-locale_twq.js │ │ ├── angular-locale_tzm-latn-ma.js │ │ ├── angular-locale_tzm-latn.js │ │ ├── angular-locale_tzm.js │ │ ├── angular-locale_ug-arab-cn.js │ │ ├── angular-locale_ug-arab.js │ │ ├── angular-locale_ug.js │ │ ├── angular-locale_uk-ua.js │ │ ├── angular-locale_uk.js │ │ ├── angular-locale_ur-in.js │ │ ├── angular-locale_ur-pk.js │ │ ├── angular-locale_ur.js │ │ ├── angular-locale_uz-arab-af.js │ │ ├── angular-locale_uz-arab.js │ │ ├── angular-locale_uz-cyrl-uz.js │ │ ├── angular-locale_uz-cyrl.js │ │ ├── angular-locale_uz-latn-uz.js │ │ ├── angular-locale_uz-latn.js │ │ ├── angular-locale_uz.js │ │ ├── angular-locale_vai-latn-lr.js │ │ ├── angular-locale_vai-latn.js │ │ ├── angular-locale_vai-vaii-lr.js │ │ ├── angular-locale_vai-vaii.js │ │ ├── angular-locale_vai.js │ │ ├── angular-locale_ve-za.js │ │ ├── angular-locale_ve.js │ │ ├── angular-locale_vi-vn.js │ │ ├── angular-locale_vi.js │ │ ├── angular-locale_vo-001.js │ │ ├── angular-locale_vo.js │ │ ├── angular-locale_vun-tz.js │ │ ├── angular-locale_vun.js │ │ ├── angular-locale_wae-ch.js │ │ ├── angular-locale_wae.js │ │ ├── angular-locale_wal-et.js │ │ ├── angular-locale_wal.js │ │ ├── angular-locale_xh-za.js │ │ ├── angular-locale_xh.js │ │ ├── angular-locale_xog-ug.js │ │ ├── angular-locale_xog.js │ │ ├── angular-locale_yav-cm.js │ │ ├── angular-locale_yav.js │ │ ├── angular-locale_yi-001.js │ │ ├── angular-locale_yi.js │ │ ├── angular-locale_yo-bj.js │ │ ├── angular-locale_yo-ng.js │ │ ├── angular-locale_yo.js │ │ ├── angular-locale_zgh-ma.js │ │ ├── angular-locale_zgh.js │ │ ├── angular-locale_zh-cn.js │ │ ├── angular-locale_zh-hans-cn.js │ │ ├── angular-locale_zh-hans-hk.js │ │ ├── angular-locale_zh-hans-mo.js │ │ ├── angular-locale_zh-hans-sg.js │ │ ├── angular-locale_zh-hans.js │ │ ├── angular-locale_zh-hant-hk.js │ │ ├── angular-locale_zh-hant-mo.js │ │ ├── angular-locale_zh-hant-tw.js │ │ ├── angular-locale_zh-hant.js │ │ ├── angular-locale_zh-hk.js │ │ ├── angular-locale_zh-tw.js │ │ ├── angular-locale_zh.js │ │ ├── angular-locale_zu-za.js │ │ └── angular-locale_zu.js │ ├── version.json │ └── version.txt ├── angularLib │ ├── mainController.js │ ├── mainDirective.js │ └── mainService.js ├── bootstrap │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js ├── css │ └── loader.css ├── images │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── accounting.jpg │ ├── attendance.png │ ├── crm.jpg │ ├── hr.png │ ├── inventory.jpg │ ├── logo - Copy.png │ ├── logo.png │ ├── payroll.jpg │ ├── pos.jpg │ └── project-management.jpg ├── md │ ├── LICENSE │ ├── css │ │ ├── materialize.css │ │ ├── materialize.min.css │ │ └── style.css │ ├── fonts │ │ └── roboto │ │ │ ├── Roboto-Bold.eot │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-Bold.woff │ │ │ ├── Roboto-Bold.woff2 │ │ │ ├── Roboto-Light.eot │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-Light.woff │ │ │ ├── Roboto-Light.woff2 │ │ │ ├── Roboto-Medium.eot │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-Medium.woff │ │ │ ├── Roboto-Medium.woff2 │ │ │ ├── Roboto-Regular.eot │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Regular.woff │ │ │ ├── Roboto-Regular.woff2 │ │ │ ├── Roboto-Thin.eot │ │ │ ├── Roboto-Thin.ttf │ │ │ ├── Roboto-Thin.woff │ │ │ └── Roboto-Thin.woff2 │ ├── index.html │ └── js │ │ ├── init.js │ │ ├── materialize.js │ │ └── materialize.min.js └── mega_menu │ ├── css │ ├── bootstrap │ │ ├── css │ │ │ └── bootstrap.min.css │ │ └── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.html │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regulard41d.eot │ ├── font-awesome.min.css │ ├── grids.min.css │ ├── material-black.min.css │ ├── material-blue.min.css │ ├── material-bootstrap.min.css │ ├── material-green.min.css │ ├── material-pink.min.css │ ├── material-red.min.css │ ├── material-white.min.css │ ├── material-yellow.min.css │ └── roboto.min.css │ └── fonts │ ├── font-awesome │ ├── fontawesome-webfont3e6e.eot │ ├── fontawesome-webfont3e6e.html │ ├── fontawesome-webfont3e6e.svg │ ├── fontawesome-webfont3e6e.ttf │ ├── fontawesome-webfont3e6e.woff │ └── fontawesome-webfontd41d.eot │ └── roboto │ ├── roboto1.html │ ├── roboto10.html │ ├── roboto11.html │ ├── roboto12.html │ ├── roboto13.html │ ├── roboto14.html │ ├── roboto15.html │ ├── roboto16.html │ ├── roboto17.html │ ├── roboto18.html │ ├── roboto19.html │ ├── roboto2.html │ ├── roboto20.html │ ├── roboto21.html │ ├── roboto3.html │ ├── roboto4.html │ ├── roboto5.html │ ├── roboto6.html │ ├── roboto7.html │ ├── roboto8.html │ └── roboto9.html ├── templates ├── accounting │ ├── AccountType.html │ ├── AccountYear.html │ ├── Dashboard.html │ ├── JournalEntry.html │ ├── Ledger.html │ ├── LoadAccountTypeForm.html │ ├── Transaction.html │ └── index.html ├── base.html ├── dashboard.html ├── footer.html ├── header.html ├── home.html ├── home_navigation.html ├── mega_menu.html ├── modal.html ├── sample.html ├── test.html └── welcome.html └── utility ├── __init__.py ├── __pycache__ ├── __init__.cpython-36.pyc ├── admin.cpython-36.pyc ├── country_codes.cpython-36.pyc ├── models.cpython-36.pyc ├── urls.cpython-36.pyc └── views.cpython-36.pyc ├── admin.py ├── apps.py ├── country_codes.py ├── migrations ├── 0001_initial.py ├── __init__.py └── __pycache__ │ ├── 0001_initial.cpython-36.pyc │ └── __init__.cpython-36.pyc ├── models.py ├── tests.py ├── urls.py └── views.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/README.md -------------------------------------------------------------------------------- /accounting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounting/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/accounting/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /accounting/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/accounting/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /accounting/__pycache__/forms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/accounting/__pycache__/forms.cpython-36.pyc -------------------------------------------------------------------------------- /accounting/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/accounting/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /accounting/__pycache__/rest_views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/accounting/__pycache__/rest_views.cpython-36.pyc -------------------------------------------------------------------------------- /accounting/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/accounting/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /accounting/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/accounting/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /accounting/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/accounting/admin.py -------------------------------------------------------------------------------- /accounting/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/accounting/apps.py -------------------------------------------------------------------------------- /accounting/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/accounting/forms.py -------------------------------------------------------------------------------- /accounting/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/accounting/migrations/0001_initial.py -------------------------------------------------------------------------------- /accounting/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounting/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/accounting/models.py -------------------------------------------------------------------------------- /accounting/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/accounting/serializers.py -------------------------------------------------------------------------------- /accounting/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/accounting/tests.py -------------------------------------------------------------------------------- /accounting/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/accounting/urls.py -------------------------------------------------------------------------------- /accounting/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/accounting/views.py -------------------------------------------------------------------------------- /allauth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/__init__.py -------------------------------------------------------------------------------- /allauth/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /allauth/__pycache__/app_settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/__pycache__/app_settings.cpython-36.pyc -------------------------------------------------------------------------------- /allauth/__pycache__/compat.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/__pycache__/compat.cpython-36.pyc -------------------------------------------------------------------------------- /allauth/__pycache__/exceptions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/__pycache__/exceptions.cpython-36.pyc -------------------------------------------------------------------------------- /allauth/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /allauth/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /allauth/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /allauth/account/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/account/__init__.py -------------------------------------------------------------------------------- /allauth/account/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/account/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /allauth/account/__pycache__/apps.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/account/__pycache__/apps.cpython-36.pyc -------------------------------------------------------------------------------- /allauth/account/__pycache__/forms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/account/__pycache__/forms.cpython-36.pyc -------------------------------------------------------------------------------- /allauth/account/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/account/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /allauth/account/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/account/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /allauth/account/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/account/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /allauth/account/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/account/adapter.py -------------------------------------------------------------------------------- /allauth/account/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/account/admin.py -------------------------------------------------------------------------------- /allauth/account/app_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/account/app_settings.py -------------------------------------------------------------------------------- /allauth/account/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/account/apps.py -------------------------------------------------------------------------------- /allauth/account/auth_backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/account/auth_backends.py -------------------------------------------------------------------------------- /allauth/account/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/account/decorators.py -------------------------------------------------------------------------------- /allauth/account/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/account/forms.py -------------------------------------------------------------------------------- /allauth/account/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/account/managers.py -------------------------------------------------------------------------------- /allauth/account/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/account/migrations/0001_initial.py -------------------------------------------------------------------------------- /allauth/account/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/account/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/account/models.py -------------------------------------------------------------------------------- /allauth/account/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/account/signals.py -------------------------------------------------------------------------------- /allauth/account/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/account/templatetags/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/account/templatetags/account.py -------------------------------------------------------------------------------- /allauth/account/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/account/tests.py -------------------------------------------------------------------------------- /allauth/account/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/account/urls.py -------------------------------------------------------------------------------- /allauth/account/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/account/utils.py -------------------------------------------------------------------------------- /allauth/account/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/account/views.py -------------------------------------------------------------------------------- /allauth/app_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/app_settings.py -------------------------------------------------------------------------------- /allauth/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/compat.py -------------------------------------------------------------------------------- /allauth/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/exceptions.py -------------------------------------------------------------------------------- /allauth/locale/ar/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/ar/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/cs/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/cs/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/el/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/el/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/fa/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/fa/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/fi/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/fi/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/he/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/he/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/hr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/hr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/hu/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/hu/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/ja/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/ja/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/ko/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/ko/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/ky/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/ky/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/lt/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/lt/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/lv/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/lv/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/nl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/nl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/pl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/pt_PT/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/pt_PT/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/sk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/sk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/sv/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/sv/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/th/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/th/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/tr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/tr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/uk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/uk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/zh_CN/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/zh_CN/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/zh_Hans/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/zh_Hans/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/zh_Hant/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/zh_Hant/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/locale/zh_TW/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/locale/zh_TW/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /allauth/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/__init__.py -------------------------------------------------------------------------------- /allauth/socialaccount/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/adapter.py -------------------------------------------------------------------------------- /allauth/socialaccount/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/admin.py -------------------------------------------------------------------------------- /allauth/socialaccount/app_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/app_settings.py -------------------------------------------------------------------------------- /allauth/socialaccount/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/apps.py -------------------------------------------------------------------------------- /allauth/socialaccount/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/fields.py -------------------------------------------------------------------------------- /allauth/socialaccount/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/forms.py -------------------------------------------------------------------------------- /allauth/socialaccount/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/helpers.py -------------------------------------------------------------------------------- /allauth/socialaccount/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/models.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/__init__.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/amazon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/amazon/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/amazon/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/amazon/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/amazon/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/amazon/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/amazon/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/amazon/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/angellist/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/angellist/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/asana/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/asana/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/asana/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/asana/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/asana/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/asana/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/asana/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/asana/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/auth0/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/auth0/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/auth0/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/auth0/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/auth0/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/auth0/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/auth0/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/auth0/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/baidu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/baidu/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/baidu/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/baidu/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/baidu/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/baidu/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/baidu/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/baidu/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/base.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/basecamp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/basecamp/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/basecamp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/basecamp/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/battlenet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/battlenet/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/bitbucket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/bitbucket/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/bitbucket_oauth2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/bitbucket_oauth2/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/bitly/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/bitly/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/bitly/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/bitly/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/bitly/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/bitly/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/bitly/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/bitly/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/box/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/box/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/box/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/box/provider.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/box/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/box/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/box/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/box/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/box/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/box/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/coinbase/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/coinbase/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/coinbase/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/coinbase/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/daum/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/daum/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/daum/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/daum/provider.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/daum/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/daum/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/daum/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/daum/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/daum/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/daum/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/digitalocean/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/digitalocean/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/discord/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/discord/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/discord/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/discord/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/discord/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/discord/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/discord/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/discord/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/douban/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/douban/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/douban/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/douban/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/douban/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/douban/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/douban/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/douban/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/doximity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/doximity/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/doximity/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/doximity/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/draugiem/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/draugiem/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/draugiem/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/draugiem/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/dropbox/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/dropbox/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/dropbox/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/dropbox/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/dropbox/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/dropbox/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/dropbox/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/dropbox/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/dropbox_oauth2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/dropbox_oauth2/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/edmodo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/edmodo/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/edmodo/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/edmodo/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/edmodo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/edmodo/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/edmodo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/edmodo/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/eventbrite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/eveonline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/eveonline/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/evernote/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/evernote/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/evernote/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/evernote/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/facebook/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/facebook/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/facebook/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/facebook/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/feedly/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/feedly/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/feedly/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/feedly/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/feedly/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/feedly/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/feedly/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/feedly/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/fivehundredpx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/fivehundredpx/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/flickr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/flickr/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/flickr/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/flickr/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/flickr/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/flickr/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/flickr/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/flickr/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/foursquare/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/foursquare/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/fxa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/fxa/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/fxa/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/fxa/provider.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/fxa/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/fxa/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/fxa/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/fxa/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/fxa/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/fxa/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/github/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/github/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/github/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/github/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/github/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/github/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/github/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/github/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/gitlab/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/gitlab/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/gitlab/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/gitlab/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/gitlab/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/gitlab/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/gitlab/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/gitlab/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/google/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/google/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/google/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/google/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/google/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/google/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/google/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/google/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/hubic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/hubic/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/hubic/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/hubic/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/hubic/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/hubic/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/hubic/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/hubic/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/instagram/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/instagram/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/kakao/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/kakao/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/kakao/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/kakao/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/kakao/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/kakao/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/kakao/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/kakao/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/line/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/line/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/line/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/line/provider.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/line/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/line/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/line/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/line/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/line/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/line/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/linkedin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/linkedin/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/linkedin/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/linkedin/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/linkedin_oauth2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/linkedin_oauth2/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/mailchimp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/mailru/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/mailru/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/mailru/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/mailru/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/mailru/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/mailru/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/mailru/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/mailru/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/naver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/naver/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/naver/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/naver/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/naver/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/naver/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/naver/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/naver/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/oauth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/oauth/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/oauth/client.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/oauth/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/oauth/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/oauth/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/oauth/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/oauth/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/oauth2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/oauth2/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/oauth2/client.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/oauth2/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/oauth2/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/oauth2/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/oauth2/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/oauth2/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/odnoklassniki/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/odnoklassniki/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/openid/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/openid/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/openid/admin.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/openid/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/openid/forms.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/openid/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/openid/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/openid/models.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/openid/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/openid/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/openid/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/openid/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/openid/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/openid/utils.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/openid/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/openid/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/orcid/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/orcid/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/orcid/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/orcid/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/orcid/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/orcid/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/orcid/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/orcid/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/paypal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/paypal/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/paypal/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/paypal/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/paypal/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/paypal/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/paypal/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/paypal/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/persona/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/persona/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/persona/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/persona/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/persona/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/persona/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/persona/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/persona/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/pinterest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/pinterest/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/reddit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/reddit/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/reddit/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/reddit/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/reddit/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/reddit/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/reddit/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/reddit/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/robinhood/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/robinhood/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/shopify/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/shopify/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/shopify/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/shopify/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/shopify/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/shopify/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/shopify/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/shopify/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/slack/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/slack/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/slack/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/slack/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/slack/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/slack/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/slack/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/slack/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/soundcloud/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/soundcloud/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/spotify/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/spotify/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/spotify/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/spotify/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/spotify/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/spotify/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/spotify/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/spotify/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/stackexchange/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/stackexchange/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/stripe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/stripe/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/stripe/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/stripe/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/stripe/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/stripe/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/stripe/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/stripe/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/tumblr/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'jshedd' 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/tumblr/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/tumblr/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/tumblr/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/tumblr/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/tumblr/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/tumblr/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/tumblr/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/twentythreeandme/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/twentythreeandme/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/twitch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/twitch/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/twitch/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/twitch/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/twitch/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/twitch/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/twitch/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/twitch/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/twitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/twitter/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/twitter/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/twitter/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/twitter/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/twitter/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/twitter/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/twitter/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/untappd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/untappd/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/untappd/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/untappd/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/untappd/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/untappd/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/untappd/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/vimeo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/vimeo/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/vimeo/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/vimeo/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/vimeo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/vimeo/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/vimeo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/vimeo/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/vk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/vk/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/vk/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/vk/provider.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/vk/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/vk/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/vk/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/vk/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/vk/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/vk/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/weibo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/weibo/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/weibo/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/weibo/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/weibo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/weibo/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/weibo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/weibo/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/weixin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/weixin/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/weixin/client.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/weixin/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/weixin/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/weixin/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/weixin/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/weixin/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/weixin/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/weixin/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/windowslive/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/windowslive/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/xing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/xing/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /allauth/socialaccount/providers/xing/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/xing/provider.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/xing/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/xing/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/xing/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/xing/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/providers/xing/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/providers/xing/views.py -------------------------------------------------------------------------------- /allauth/socialaccount/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/signals.py -------------------------------------------------------------------------------- /allauth/socialaccount/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allauth/socialaccount/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/tests.py -------------------------------------------------------------------------------- /allauth/socialaccount/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/urls.py -------------------------------------------------------------------------------- /allauth/socialaccount/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/socialaccount/views.py -------------------------------------------------------------------------------- /allauth/templates/account/account_inactive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/templates/account/account_inactive.html -------------------------------------------------------------------------------- /allauth/templates/account/base.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | 4 | -------------------------------------------------------------------------------- /allauth/templates/account/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/templates/account/email.html -------------------------------------------------------------------------------- /allauth/templates/account/email_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/templates/account/email_confirm.html -------------------------------------------------------------------------------- /allauth/templates/account/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/templates/account/login.html -------------------------------------------------------------------------------- /allauth/templates/account/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/templates/account/logout.html -------------------------------------------------------------------------------- /allauth/templates/account/messages/logged_in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/templates/account/messages/logged_in.txt -------------------------------------------------------------------------------- /allauth/templates/account/password_change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/templates/account/password_change.html -------------------------------------------------------------------------------- /allauth/templates/account/password_reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/templates/account/password_reset.html -------------------------------------------------------------------------------- /allauth/templates/account/password_set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/templates/account/password_set.html -------------------------------------------------------------------------------- /allauth/templates/account/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/templates/account/signup.html -------------------------------------------------------------------------------- /allauth/templates/account/signup_closed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/templates/account/signup_closed.html -------------------------------------------------------------------------------- /allauth/templates/account/verification_sent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/templates/account/verification_sent.html -------------------------------------------------------------------------------- /allauth/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/templates/base.html -------------------------------------------------------------------------------- /allauth/templates/openid/base.html: -------------------------------------------------------------------------------- 1 | {% extends "socialaccount/base.html" %} 2 | -------------------------------------------------------------------------------- /allauth/templates/openid/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/templates/openid/login.html -------------------------------------------------------------------------------- /allauth/templates/socialaccount/base.html: -------------------------------------------------------------------------------- 1 | {% extends "account/base.html" %} 2 | 3 | -------------------------------------------------------------------------------- /allauth/templates/socialaccount/connections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/templates/socialaccount/connections.html -------------------------------------------------------------------------------- /allauth/templates/socialaccount/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/templates/socialaccount/signup.html -------------------------------------------------------------------------------- /allauth/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/tests.py -------------------------------------------------------------------------------- /allauth/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/urls.py -------------------------------------------------------------------------------- /allauth/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/allauth/utils.py -------------------------------------------------------------------------------- /attendance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /attendance/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/attendance/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /attendance/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/attendance/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /attendance/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/attendance/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /attendance/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/attendance/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /attendance/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/attendance/admin.py -------------------------------------------------------------------------------- /attendance/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/attendance/apps.py -------------------------------------------------------------------------------- /attendance/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/attendance/forms.py -------------------------------------------------------------------------------- /attendance/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/attendance/migrations/0001_initial.py -------------------------------------------------------------------------------- /attendance/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /attendance/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/attendance/models.py -------------------------------------------------------------------------------- /attendance/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/attendance/tests.py -------------------------------------------------------------------------------- /attendance/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/attendance/urls.py -------------------------------------------------------------------------------- /attendance/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /crm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crm/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/crm/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /crm/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/crm/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /crm/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/crm/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /crm/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/crm/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /crm/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/crm/admin.py -------------------------------------------------------------------------------- /crm/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/crm/apps.py -------------------------------------------------------------------------------- /crm/forms.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crm/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/crm/migrations/0001_initial.py -------------------------------------------------------------------------------- /crm/migrations/0002_auto_20170323_0056.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/crm/migrations/0002_auto_20170323_0056.py -------------------------------------------------------------------------------- /crm/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crm/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/crm/models.py -------------------------------------------------------------------------------- /crm/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/crm/tests.py -------------------------------------------------------------------------------- /crm/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/crm/urls.py -------------------------------------------------------------------------------- /crm/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /erp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /erp/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/erp/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /erp/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/erp/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /erp/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/erp/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /erp/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/erp/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /erp/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/erp/settings.py -------------------------------------------------------------------------------- /erp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/erp/urls.py -------------------------------------------------------------------------------- /erp/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/erp/wsgi.py -------------------------------------------------------------------------------- /help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/help.txt -------------------------------------------------------------------------------- /hr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hr/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/hr/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /hr/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/hr/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /hr/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/hr/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /hr/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/hr/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /hr/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/hr/admin.py -------------------------------------------------------------------------------- /hr/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/hr/apps.py -------------------------------------------------------------------------------- /hr/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/hr/migrations/0001_initial.py -------------------------------------------------------------------------------- /hr/migrations/0002_auto_20170321_1344.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/hr/migrations/0002_auto_20170321_1344.py -------------------------------------------------------------------------------- /hr/migrations/0003_training_date_to.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/hr/migrations/0003_training_date_to.py -------------------------------------------------------------------------------- /hr/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hr/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/hr/models.py -------------------------------------------------------------------------------- /hr/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/hr/tests.py -------------------------------------------------------------------------------- /hr/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/hr/urls.py -------------------------------------------------------------------------------- /hr/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /inventory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/inventory/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /inventory/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/inventory/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /inventory/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/inventory/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /inventory/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/inventory/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /inventory/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/inventory/admin.py -------------------------------------------------------------------------------- /inventory/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/inventory/apps.py -------------------------------------------------------------------------------- /inventory/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/inventory/migrations/0001_initial.py -------------------------------------------------------------------------------- /inventory/migrations/0002_auto_20170323_0118.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/inventory/migrations/0002_auto_20170323_0118.py -------------------------------------------------------------------------------- /inventory/migrations/0003_auto_20170323_0122.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/inventory/migrations/0003_auto_20170323_0122.py -------------------------------------------------------------------------------- /inventory/migrations/0004_auto_20170323_0130.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/inventory/migrations/0004_auto_20170323_0130.py -------------------------------------------------------------------------------- /inventory/migrations/0005_auto_20170323_0210.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/inventory/migrations/0005_auto_20170323_0210.py -------------------------------------------------------------------------------- /inventory/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/inventory/models.py -------------------------------------------------------------------------------- /inventory/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/inventory/tests.py -------------------------------------------------------------------------------- /inventory/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/inventory/urls.py -------------------------------------------------------------------------------- /inventory/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/manage.py -------------------------------------------------------------------------------- /payroll/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /payroll/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/payroll/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /payroll/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/payroll/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /payroll/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/payroll/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /payroll/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/payroll/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /payroll/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/payroll/admin.py -------------------------------------------------------------------------------- /payroll/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/payroll/apps.py -------------------------------------------------------------------------------- /payroll/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/payroll/models.py -------------------------------------------------------------------------------- /payroll/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/payroll/tests.py -------------------------------------------------------------------------------- /payroll/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/payroll/urls.py -------------------------------------------------------------------------------- /payroll/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /pos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pos/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/pos/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /pos/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/pos/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /pos/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/pos/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /pos/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/pos/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /pos/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/pos/admin.py -------------------------------------------------------------------------------- /pos/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/pos/apps.py -------------------------------------------------------------------------------- /pos/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/pos/models.py -------------------------------------------------------------------------------- /pos/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/pos/tests.py -------------------------------------------------------------------------------- /pos/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/pos/urls.py -------------------------------------------------------------------------------- /pos/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /project_management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_management/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/project_management/admin.py -------------------------------------------------------------------------------- /project_management/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/project_management/apps.py -------------------------------------------------------------------------------- /project_management/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/project_management/migrations/0001_initial.py -------------------------------------------------------------------------------- /project_management/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_management/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/project_management/models.py -------------------------------------------------------------------------------- /project_management/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/project_management/tests.py -------------------------------------------------------------------------------- /project_management/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/project_management/urls.py -------------------------------------------------------------------------------- /project_management/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /restapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /restapp/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/restapp/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /restapp/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/restapp/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /restapp/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/restapp/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /restapp/__pycache__/serializers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/restapp/__pycache__/serializers.cpython-36.pyc -------------------------------------------------------------------------------- /restapp/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/restapp/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /restapp/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/restapp/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /restapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/restapp/admin.py -------------------------------------------------------------------------------- /restapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/restapp/apps.py -------------------------------------------------------------------------------- /restapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /restapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/restapp/models.py -------------------------------------------------------------------------------- /restapp/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/restapp/serializers.py -------------------------------------------------------------------------------- /restapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/restapp/tests.py -------------------------------------------------------------------------------- /restapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/restapp/urls.py -------------------------------------------------------------------------------- /restapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/restapp/views.py -------------------------------------------------------------------------------- /static/App/AddController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/App/AddController.js -------------------------------------------------------------------------------- /static/App/DeleteController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/App/DeleteController.js -------------------------------------------------------------------------------- /static/App/EditController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/App/EditController.js -------------------------------------------------------------------------------- /static/App/Service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/App/Service.js -------------------------------------------------------------------------------- /static/App/myApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/App/myApp.js -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-animate.js -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-animate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-animate.min.js -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-animate.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-animate.min.js.map -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-aria.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-aria.js -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-aria.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-aria.min.js -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-aria.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-aria.min.js.map -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-cookies.js -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-cookies.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-cookies.min.js -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-cookies.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-cookies.min.js.map -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-csp.css -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-loader.js -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-loader.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-loader.min.js -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-loader.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-loader.min.js.map -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-message-format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-message-format.js -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-messages.js -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-messages.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-messages.min.js -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-messages.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-messages.min.js.map -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-mocks.js -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-parse-ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-parse-ext.js -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-parse-ext.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-parse-ext.min.js -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-resource.js -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-resource.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-resource.min.js -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-resource.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-resource.min.js.map -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-route.js -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-route.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-route.min.js -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-route.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-route.min.js.map -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-sanitize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-sanitize.js -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-sanitize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-sanitize.min.js -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-sanitize.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-sanitize.min.js.map -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-scenario.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-scenario.js -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-touch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-touch.js -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-touch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-touch.min.js -------------------------------------------------------------------------------- /static/angular-1.5.8/angular-touch.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular-touch.min.js.map -------------------------------------------------------------------------------- /static/angular-1.5.8/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular.js -------------------------------------------------------------------------------- /static/angular-1.5.8/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular.min.js -------------------------------------------------------------------------------- /static/angular-1.5.8/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/angular.min.js.map -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/Error404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/Error404.html -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/components/marked-0.3.5/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/marked'); 2 | -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/css/animations.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/css/doc_widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/css/doc_widgets.css -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/css/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/css/docs.css -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/css/prettify-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/css/prettify-theme.css -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/css/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/css/prettify.css -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/examples/example-example10/app.css: -------------------------------------------------------------------------------- 1 | div.spicy div { 2 | padding: 10px; 3 | border: solid 2px blue; 4 | } -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/examples/example-example104/http-hello.html: -------------------------------------------------------------------------------- 1 | Hello, $http! -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/examples/example-example14/customer-name.html: -------------------------------------------------------------------------------- 1 | Name: {{customer.name}} -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/examples/example-example20/my-dialog.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /static/angular-1.5.8/docs/examples/example-example21/my-dialog.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /static/angular-1.5.8/docs/examples/example-example52/style.css: -------------------------------------------------------------------------------- 1 | p { 2 | margin: 10px 0 3px; 3 | } -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/examples/example-example85/template1.html: -------------------------------------------------------------------------------- 1 | Content of template1.html -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/examples/example-example85/template2.html: -------------------------------------------------------------------------------- 1 | Content of template2.html -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/examples/example-example93/style.css: -------------------------------------------------------------------------------- 1 | span { 2 | color: black; 3 | } -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/favicon.ico -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/img/angular_parts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/img/angular_parts.png -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/img/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/img/bullet.png -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/img/form_data_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/img/form_data_flow.png -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/img/helloworld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/img/helloworld.png -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/index-debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/index-debug.html -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/index-jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/index-jquery.html -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/index-production.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/index-production.html -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/index.html -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/js/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/js/docs.js -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/js/docs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/js/docs.min.js -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/js/docs.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/js/docs.min.js.map -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/js/nav-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/js/nav-data.js -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/js/pages-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/js/pages-data.js -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/js/search-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/js/search-data.json -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/js/search-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/js/search-worker.js -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/js/versions-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/js/versions-data.js -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/partials/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/partials/api.html -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/partials/api/auto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/partials/api/auto.html -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/partials/api/ng.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/partials/api/ng.html -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/partials/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/partials/error.html -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/partials/error/$q.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/partials/error/$q.html -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/partials/error/ng.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/partials/error/ng.html -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/partials/guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/partials/guide.html -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/partials/guide/di.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/partials/guide/di.html -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/partials/guide/ie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/partials/guide/ie.html -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/partials/misc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/partials/misc.html -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/partials/misc/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/partials/misc/faq.html -------------------------------------------------------------------------------- /static/angular-1.5.8/docs/partials/tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/docs/partials/tutorial.html -------------------------------------------------------------------------------- /static/angular-1.5.8/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/errors.json -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_aa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_aa.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_af.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_agq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_agq.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_ak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_ak.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_am.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_am.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_ar.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_as.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_as.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_asa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_asa.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_ast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_ast.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_az.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_bas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_bas.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_be.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_bem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_bem.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_bez.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_bez.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_bg.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_bm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_bm.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_bn.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_bo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_bo.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_br.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_brx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_brx.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_bs.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_byn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_byn.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_ca.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_cgg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_cgg.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_chr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_chr.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_ckb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_ckb.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_cs.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_cy.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_da.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_dav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_dav.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_de.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_dje.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_dje.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_dsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_dsb.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_dua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_dua.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_dyo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_dyo.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_dz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_dz.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_ebu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_ebu.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_ee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_ee.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_el.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_en.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_eo.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_es.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_et.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_eu.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_ewo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_ewo.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_fa.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_ff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_ff.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_fi.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_fil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_fil.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_fo.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_fr.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_fur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_fur.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_fy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_fy.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_ga.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_gd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_gd.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_gl.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_gsw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_gsw.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_gu.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_guz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_guz.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_gv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_gv.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_ha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_ha.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_haw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_haw.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_he.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_hi.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_hr.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_hsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_hsb.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_hu.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_hy.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_ia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_ia.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_id.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_ig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_ig.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_ii.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_ii.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_in.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_is.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_it.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_iw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_iw.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_ja.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_jgo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_jgo.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_jmc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_jmc.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_ka.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_kab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_kab.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_kam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_kam.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_kde.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_kde.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_kea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_kea.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_khq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_khq.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_ki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_ki.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_kk.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_kkj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_kkj.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_kl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_kl.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_kln.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_kln.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_km.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_kn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_kn.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_ko.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_kok.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_kok.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_ks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_ks.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_ksb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_ksb.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_ksf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_ksf.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_ksh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_ksh.js -------------------------------------------------------------------------------- /static/angular-1.5.8/i18n/angular-locale_kw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/i18n/angular-locale_kw.js -------------------------------------------------------------------------------- /static/angular-1.5.8/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angular-1.5.8/version.json -------------------------------------------------------------------------------- /static/angular-1.5.8/version.txt: -------------------------------------------------------------------------------- 1 | 1.5.8 -------------------------------------------------------------------------------- /static/angularLib/mainController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angularLib/mainController.js -------------------------------------------------------------------------------- /static/angularLib/mainDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angularLib/mainDirective.js -------------------------------------------------------------------------------- /static/angularLib/mainService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/angularLib/mainService.js -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/css/loader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/css/loader.css -------------------------------------------------------------------------------- /static/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/images/1.png -------------------------------------------------------------------------------- /static/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/images/2.png -------------------------------------------------------------------------------- /static/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/images/3.png -------------------------------------------------------------------------------- /static/images/accounting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/images/accounting.jpg -------------------------------------------------------------------------------- /static/images/attendance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/images/attendance.png -------------------------------------------------------------------------------- /static/images/crm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/images/crm.jpg -------------------------------------------------------------------------------- /static/images/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/images/hr.png -------------------------------------------------------------------------------- /static/images/inventory.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/images/inventory.jpg -------------------------------------------------------------------------------- /static/images/logo - Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/images/logo - Copy.png -------------------------------------------------------------------------------- /static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/images/logo.png -------------------------------------------------------------------------------- /static/images/payroll.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/images/payroll.jpg -------------------------------------------------------------------------------- /static/images/pos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/images/pos.jpg -------------------------------------------------------------------------------- /static/images/project-management.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/images/project-management.jpg -------------------------------------------------------------------------------- /static/md/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/md/LICENSE -------------------------------------------------------------------------------- /static/md/css/materialize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/md/css/materialize.css -------------------------------------------------------------------------------- /static/md/css/materialize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/md/css/materialize.min.css -------------------------------------------------------------------------------- /static/md/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/md/css/style.css -------------------------------------------------------------------------------- /static/md/fonts/roboto/Roboto-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/md/fonts/roboto/Roboto-Bold.eot -------------------------------------------------------------------------------- /static/md/fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/md/fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /static/md/fonts/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/md/fonts/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /static/md/fonts/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/md/fonts/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /static/md/fonts/roboto/Roboto-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/md/fonts/roboto/Roboto-Light.eot -------------------------------------------------------------------------------- /static/md/fonts/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/md/fonts/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /static/md/fonts/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/md/fonts/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /static/md/fonts/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/md/fonts/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /static/md/fonts/roboto/Roboto-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/md/fonts/roboto/Roboto-Medium.eot -------------------------------------------------------------------------------- /static/md/fonts/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/md/fonts/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /static/md/fonts/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/md/fonts/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /static/md/fonts/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/md/fonts/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /static/md/fonts/roboto/Roboto-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/md/fonts/roboto/Roboto-Regular.eot -------------------------------------------------------------------------------- /static/md/fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/md/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /static/md/fonts/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/md/fonts/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /static/md/fonts/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/md/fonts/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /static/md/fonts/roboto/Roboto-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/md/fonts/roboto/Roboto-Thin.eot -------------------------------------------------------------------------------- /static/md/fonts/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/md/fonts/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /static/md/fonts/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/md/fonts/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /static/md/fonts/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/md/fonts/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /static/md/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/md/index.html -------------------------------------------------------------------------------- /static/md/js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/md/js/init.js -------------------------------------------------------------------------------- /static/md/js/materialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/md/js/materialize.js -------------------------------------------------------------------------------- /static/md/js/materialize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/md/js/materialize.min.js -------------------------------------------------------------------------------- /static/mega_menu/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/css/font-awesome.min.css -------------------------------------------------------------------------------- /static/mega_menu/css/grids.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/css/grids.min.css -------------------------------------------------------------------------------- /static/mega_menu/css/material-black.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/css/material-black.min.css -------------------------------------------------------------------------------- /static/mega_menu/css/material-blue.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/css/material-blue.min.css -------------------------------------------------------------------------------- /static/mega_menu/css/material-green.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/css/material-green.min.css -------------------------------------------------------------------------------- /static/mega_menu/css/material-pink.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/css/material-pink.min.css -------------------------------------------------------------------------------- /static/mega_menu/css/material-red.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/css/material-red.min.css -------------------------------------------------------------------------------- /static/mega_menu/css/material-white.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/css/material-white.min.css -------------------------------------------------------------------------------- /static/mega_menu/css/material-yellow.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/css/material-yellow.min.css -------------------------------------------------------------------------------- /static/mega_menu/css/roboto.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/css/roboto.min.css -------------------------------------------------------------------------------- /static/mega_menu/fonts/roboto/roboto1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/fonts/roboto/roboto1.html -------------------------------------------------------------------------------- /static/mega_menu/fonts/roboto/roboto10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/fonts/roboto/roboto10.html -------------------------------------------------------------------------------- /static/mega_menu/fonts/roboto/roboto11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/fonts/roboto/roboto11.html -------------------------------------------------------------------------------- /static/mega_menu/fonts/roboto/roboto12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/fonts/roboto/roboto12.html -------------------------------------------------------------------------------- /static/mega_menu/fonts/roboto/roboto13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/fonts/roboto/roboto13.html -------------------------------------------------------------------------------- /static/mega_menu/fonts/roboto/roboto14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/fonts/roboto/roboto14.html -------------------------------------------------------------------------------- /static/mega_menu/fonts/roboto/roboto15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/fonts/roboto/roboto15.html -------------------------------------------------------------------------------- /static/mega_menu/fonts/roboto/roboto16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/fonts/roboto/roboto16.html -------------------------------------------------------------------------------- /static/mega_menu/fonts/roboto/roboto17.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/fonts/roboto/roboto17.html -------------------------------------------------------------------------------- /static/mega_menu/fonts/roboto/roboto18.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/fonts/roboto/roboto18.html -------------------------------------------------------------------------------- /static/mega_menu/fonts/roboto/roboto19.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/fonts/roboto/roboto19.html -------------------------------------------------------------------------------- /static/mega_menu/fonts/roboto/roboto2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/fonts/roboto/roboto2.html -------------------------------------------------------------------------------- /static/mega_menu/fonts/roboto/roboto20.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/fonts/roboto/roboto20.html -------------------------------------------------------------------------------- /static/mega_menu/fonts/roboto/roboto21.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/fonts/roboto/roboto21.html -------------------------------------------------------------------------------- /static/mega_menu/fonts/roboto/roboto3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/fonts/roboto/roboto3.html -------------------------------------------------------------------------------- /static/mega_menu/fonts/roboto/roboto4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/fonts/roboto/roboto4.html -------------------------------------------------------------------------------- /static/mega_menu/fonts/roboto/roboto5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/fonts/roboto/roboto5.html -------------------------------------------------------------------------------- /static/mega_menu/fonts/roboto/roboto6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/fonts/roboto/roboto6.html -------------------------------------------------------------------------------- /static/mega_menu/fonts/roboto/roboto7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/fonts/roboto/roboto7.html -------------------------------------------------------------------------------- /static/mega_menu/fonts/roboto/roboto8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/fonts/roboto/roboto8.html -------------------------------------------------------------------------------- /static/mega_menu/fonts/roboto/roboto9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/static/mega_menu/fonts/roboto/roboto9.html -------------------------------------------------------------------------------- /templates/accounting/AccountType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/templates/accounting/AccountType.html -------------------------------------------------------------------------------- /templates/accounting/AccountYear.html: -------------------------------------------------------------------------------- 1 | Acc Year -------------------------------------------------------------------------------- /templates/accounting/Dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/templates/accounting/Dashboard.html -------------------------------------------------------------------------------- /templates/accounting/JournalEntry.html: -------------------------------------------------------------------------------- 1 | Journal Entry -------------------------------------------------------------------------------- /templates/accounting/Ledger.html: -------------------------------------------------------------------------------- 1 | Ledger -------------------------------------------------------------------------------- /templates/accounting/LoadAccountTypeForm.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/accounting/Transaction.html: -------------------------------------------------------------------------------- 1 | Transaction -------------------------------------------------------------------------------- /templates/accounting/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/templates/dashboard.html -------------------------------------------------------------------------------- /templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/templates/footer.html -------------------------------------------------------------------------------- /templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/templates/header.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/home_navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/templates/home_navigation.html -------------------------------------------------------------------------------- /templates/mega_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/templates/mega_menu.html -------------------------------------------------------------------------------- /templates/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/templates/modal.html -------------------------------------------------------------------------------- /templates/sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/templates/sample.html -------------------------------------------------------------------------------- /templates/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/templates/test.html -------------------------------------------------------------------------------- /templates/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/templates/welcome.html -------------------------------------------------------------------------------- /utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utility/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/utility/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /utility/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/utility/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /utility/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/utility/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /utility/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/utility/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /utility/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/utility/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /utility/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/utility/admin.py -------------------------------------------------------------------------------- /utility/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/utility/apps.py -------------------------------------------------------------------------------- /utility/country_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/utility/country_codes.py -------------------------------------------------------------------------------- /utility/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/utility/migrations/0001_initial.py -------------------------------------------------------------------------------- /utility/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utility/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/utility/models.py -------------------------------------------------------------------------------- /utility/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/utility/tests.py -------------------------------------------------------------------------------- /utility/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/utility/urls.py -------------------------------------------------------------------------------- /utility/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirul1000/erp-in-Python-Django/HEAD/utility/views.py --------------------------------------------------------------------------------