├── django_mobile_app_distribution ├── __init__.py ├── migrations │ ├── __init__.py │ ├── 0005_auto_20160118_1759.py │ ├── 0004_auto_20150921_0813.py │ ├── 0003_auto_20150807_1250.py │ ├── 0006_auto_20160408_1701.py │ ├── 0002_auto_20150730_1357.py │ └── 0001_initial.py ├── static │ └── django_mobile_app_distribution │ │ ├── css │ │ ├── app_list.sass │ │ ├── app_list.css │ │ ├── app_list.css.map │ │ ├── app.css │ │ ├── normalize.css │ │ └── foundation.min.css │ │ └── js │ │ ├── vendor │ │ ├── jquery.cookie.js │ │ ├── placeholder.js │ │ ├── fastclick.js │ │ └── modernizr.js │ │ └── foundation │ │ ├── foundation.min.js │ │ └── foundation.js ├── locale │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── ja │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── exceptions.py ├── templates │ ├── admin │ │ └── base_site.html │ └── django_mobile_app_distribution │ │ ├── email_notification.html │ │ ├── logout.html │ │ ├── base.html │ │ ├── login.html │ │ └── app_list.html ├── tests.py ├── urls.py ├── auth_urls.py ├── storage.py ├── forms.py ├── settings.py ├── views.py ├── admin.py └── models.py ├── .gitignore ├── MANIFEST.in ├── LICENSE ├── setup.py ├── CHANGES.rst └── README.md /django_mobile_app_distribution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_mobile_app_distribution/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.egg* 2 | dev.py 3 | build 4 | dist 5 | .DS_Store 6 | *.pyc 7 | *.log 8 | .idea/* 9 | -------------------------------------------------------------------------------- /django_mobile_app_distribution/static/django_mobile_app_distribution/css/app_list.sass: -------------------------------------------------------------------------------- 1 | .app 2 | margin-bottom: 55px 3 | 4 | .app_info 5 | margin-bottom: 15px -------------------------------------------------------------------------------- /django_mobile_app_distribution/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proper-Job/django-mobile-app-distribution/HEAD/django_mobile_app_distribution/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_mobile_app_distribution/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proper-Job/django-mobile-app-distribution/HEAD/django_mobile_app_distribution/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_mobile_app_distribution/locale/ja/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proper-Job/django-mobile-app-distribution/HEAD/django_mobile_app_distribution/locale/ja/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_mobile_app_distribution/static/django_mobile_app_distribution/css/app_list.css: -------------------------------------------------------------------------------- 1 | .app { 2 | margin-bottom: 55px; } 3 | 4 | .app_info { 5 | margin-bottom: 15px; } 6 | 7 | /*# sourceMappingURL=app_list.css.map */ 8 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include CHANGES.rst README.md LICENSE 2 | 3 | recursive-include django_mobile_app_distribution/static * 4 | recursive-include django_mobile_app_distribution/templates * 5 | recursive-include django_mobile_app_distribution/locale * -------------------------------------------------------------------------------- /django_mobile_app_distribution/static/django_mobile_app_distribution/css/app_list.css.map: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "mappings": "AACA,IAAI;EACF,aAAa,EAAE,IAAI;;AAErB,SAAS;EACP,aAAa,EAAE,IAAI", 4 | "sources": ["app_list.sass"], 5 | "names": [], 6 | "file": "app_list.css" 7 | } -------------------------------------------------------------------------------- /django_mobile_app_distribution/exceptions.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import unicode_literals 3 | 4 | class MobileAppDistributionConfigurationException(Exception): 5 | """A misconfiguration within the Django Mobile App Distribution settings is causing invalid states""" 6 | pass 7 | -------------------------------------------------------------------------------- /django_mobile_app_distribution/static/django_mobile_app_distribution/css/app.css: -------------------------------------------------------------------------------- 1 | /* 2 | a { 3 | color: black; 4 | } 5 | 6 | button, .button { 7 | background-color: black; 8 | } 9 | 10 | button:hover, button:focus, .button:hover, .button:focus { 11 | background-color: gray; 12 | } 13 | */ -------------------------------------------------------------------------------- /django_mobile_app_distribution/templates/admin/base_site.html: -------------------------------------------------------------------------------- 1 | {% extends "admin/base.html" %} 2 | {% load i18n %} 3 | 4 | {% block title %}{{ title }} | {% trans 'Django site admin' %}{% endblock %} 5 | 6 | {% block branding %} 7 |