├── myproject ├── __init__.py ├── core │ ├── __init__.py │ ├── admin.py │ ├── static │ │ ├── css │ │ │ ├── simple-line-icons │ │ │ │ ├── .npmignore │ │ │ │ ├── fonts │ │ │ │ │ ├── Simple-Line-Icons.eot │ │ │ │ │ ├── Simple-Line-Icons.ttf │ │ │ │ │ ├── Simple-Line-Icons.woff │ │ │ │ │ └── Simple-Line-Icons.woff2 │ │ │ │ └── css │ │ │ │ │ └── simple-line-icons.css │ │ │ ├── font-awesome │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ └── .npmignore │ │ │ └── flag-icon-css │ │ │ │ ├── .editorconfig │ │ │ │ └── flags │ │ │ │ └── 4x3 │ │ │ │ ├── pl.svg │ │ │ │ ├── fr.svg │ │ │ │ ├── in.svg │ │ │ │ ├── us.svg │ │ │ │ └── br.svg │ │ ├── img │ │ │ ├── avatars │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 5.jpg │ │ │ │ ├── 6.jpg │ │ │ │ ├── 7.jpg │ │ │ │ └── 8.jpg │ │ │ └── brand │ │ │ │ ├── logo.png │ │ │ │ ├── sygnet.svg │ │ │ │ └── logo.svg │ │ ├── landpage │ │ │ ├── assets │ │ │ │ ├── .DS_Store │ │ │ │ ├── css │ │ │ │ │ ├── .DS_Store │ │ │ │ │ ├── masonry.css │ │ │ │ │ ├── pushy.css │ │ │ │ │ ├── odometer-theme-default.css │ │ │ │ │ └── magnific-popup.css │ │ │ │ └── js │ │ │ │ │ ├── masonry.js │ │ │ │ │ ├── ie10-viewport-bug-workaround.js │ │ │ │ │ ├── pushy.min.js │ │ │ │ │ ├── scripts.js │ │ │ │ │ ├── ie-emulation-modes-warning.js │ │ │ │ │ ├── wow.min.js │ │ │ │ │ └── holder.min.js │ │ │ └── css │ │ │ │ └── style.css │ │ └── js │ │ │ ├── modal.js │ │ │ ├── ui.datepicker-pt-BR.js │ │ │ ├── custom-tooltips.min.js │ │ │ ├── coreui.min.js │ │ │ ├── main.js │ │ │ └── pace.min.js │ ├── tests.py │ ├── apps.py │ ├── templates │ │ ├── includes │ │ │ ├── breadcrumb.html │ │ │ ├── breadcrumb_detail.html │ │ │ ├── footer.html │ │ │ ├── breadcrumb_update.html │ │ │ ├── sidebar.html │ │ │ ├── nav.html │ │ │ └── aside-menu.html │ │ ├── modal │ │ │ └── modal_delete.html │ │ ├── base.html │ │ └── dashboard.html │ ├── actions.py │ ├── mixins.py │ ├── urls.py │ ├── views.py │ └── models.py ├── crm │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ ├── 0002_auto_20180416_2146.py │ │ └── 0001_initial.py │ ├── tests.py │ ├── apps.py │ ├── mixins.py │ ├── managers.py │ ├── urls.py │ ├── views.py │ ├── templates │ │ └── crm │ │ │ ├── customer_form.html │ │ │ ├── customer_detail.html │ │ │ └── customer_list.html │ ├── admin.py │ ├── forms.py │ └── models.py ├── accounts │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── 0001_initial.py │ ├── tests.py │ ├── apps.py │ ├── views.py │ ├── urls.py │ ├── models.py │ ├── forms.py │ ├── admin.py │ └── templates │ │ └── accounts │ │ ├── login.html │ │ └── register.html ├── urls.py ├── wsgi.py ├── utils │ └── lists.py └── settings.py ├── requirements.txt ├── README.md ├── manage.py ├── contrib └── env_gen.py └── .gitignore /myproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myproject/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myproject/crm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myproject/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myproject/crm/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myproject/accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myproject/core/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /myproject/core/static/css/simple-line-icons/.npmignore: -------------------------------------------------------------------------------- 1 | .* 2 | !.gitignore 3 | *.log 4 | *~ 5 | *# -------------------------------------------------------------------------------- /myproject/core/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /myproject/crm/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /myproject/accounts/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /myproject/core/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class CoreConfig(AppConfig): 5 | name = 'core' 6 | -------------------------------------------------------------------------------- /myproject/core/static/img/avatars/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg3915/crm2/master/myproject/core/static/img/avatars/1.jpg -------------------------------------------------------------------------------- /myproject/core/static/img/avatars/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg3915/crm2/master/myproject/core/static/img/avatars/2.jpg -------------------------------------------------------------------------------- /myproject/core/static/img/avatars/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg3915/crm2/master/myproject/core/static/img/avatars/3.jpg -------------------------------------------------------------------------------- /myproject/core/static/img/avatars/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg3915/crm2/master/myproject/core/static/img/avatars/4.jpg -------------------------------------------------------------------------------- /myproject/core/static/img/avatars/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg3915/crm2/master/myproject/core/static/img/avatars/5.jpg -------------------------------------------------------------------------------- /myproject/core/static/img/avatars/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg3915/crm2/master/myproject/core/static/img/avatars/6.jpg -------------------------------------------------------------------------------- /myproject/core/static/img/avatars/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg3915/crm2/master/myproject/core/static/img/avatars/7.jpg -------------------------------------------------------------------------------- /myproject/core/static/img/avatars/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg3915/crm2/master/myproject/core/static/img/avatars/8.jpg -------------------------------------------------------------------------------- /myproject/core/static/img/brand/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg3915/crm2/master/myproject/core/static/img/brand/logo.png -------------------------------------------------------------------------------- /myproject/core/static/landpage/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg3915/crm2/master/myproject/core/static/landpage/assets/.DS_Store -------------------------------------------------------------------------------- /myproject/core/static/landpage/assets/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg3915/crm2/master/myproject/core/static/landpage/assets/css/.DS_Store -------------------------------------------------------------------------------- /myproject/core/templates/includes/breadcrumb.html: -------------------------------------------------------------------------------- 1 | {% block breadcrumb %} 2 | 3 |
Crie sua conta
27 | 74 || 38 | | Nome | 39 |Telefone | 41 |Status | 42 ||
|---|---|---|---|---|
| 48 | | {{ object.full_name }} | 49 |{{ object.user.email }} | 50 |{{ object.phone }} | 51 |52 | {% if object.active %} 53 | Ativo 54 | {% else %} 55 | Inativo 56 | {% endif %} 57 | 65 | | 66 |
| Usuários | 60 |Código | 61 |
|---|---|
|
66 | Yiorgos Avraamu
67 |
68 | yiorgos@email.com
69 |
70 | |
71 |
72 |
73 |
74 | 270/18.LO
75 |
76 | |
77 |
|
80 | Avram Tarasios
81 |
82 | avram@email.com
83 |
84 | |
85 |
86 |
87 |
88 | 250/18.LO
89 |
90 | |
91 |
|
94 | Quintin Ed
95 |
96 | quintin@email.com
97 |
98 | |
99 |
100 |
101 |
102 | 280/18.LO
103 |
104 | |
105 |
|
108 | Enéas Kwadwo
109 |
110 | eneas@email.com
111 |
112 | |
113 |
114 |
115 |
116 | 314/18.LO
117 |
118 | |
119 |
|
122 | Agapetus Tadeáš
123 |
124 | agapetus@email.com
125 |
126 | |
127 |
128 |
129 |
130 | 222/18.LO
131 |
132 | |
133 |
|
136 | Friderik Dávid
137 |
138 | friderik@email.com
139 |
140 | |
141 |
142 |
143 |
144 | 500/18.LO
145 |
146 | |
147 |
| Cliente | 156 |Código | 157 |
|---|---|
|
162 | Yiorgos Avraamu
163 |
164 | yiorgos@email.com
165 |
166 | |
167 |
168 |
169 |
170 | 27
171 |
172 | |
173 |
|
176 | Avram Tarasios
177 |
178 | avram@email.com
179 |
180 | |
181 |
182 |
183 |
184 | 50
185 |
186 | |
187 |
|
190 | Quintin Ed
191 |
192 | quintin@email.com
193 |
194 | |
195 |
196 |
197 |
198 | 8
199 |
200 | |
201 |
|
204 | Enéas Kwadwo
205 |
206 | eneas@email.com
207 |
208 | |
209 |
210 |
211 |
212 | 12
213 |
214 | |
215 |
|
218 | Agapetus Tadeáš
219 |
220 | agapetus@email.com
221 |
222 | |
223 |
224 |
225 |
226 | 42
227 |
228 | |
229 |
|
232 | Friderik Dávid
233 |
234 | friderik@email.com
235 |
236 | |
237 |
238 |
239 |
240 | 12
241 |
242 | |
243 |