forked from LeviLucena/DjangoLivre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Estrutura
57 lines (57 loc) · 1.6 KB
/
Estrutura
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
A estrutura do meu site está assim
DjangoLivre/
|-- DjangoLivre/
| |-- _pycache_/
| | |-- _init_.cpython-311.pyc
| | |-- settings.cpython-311.pyc
| | |-- urls.cpython-311.pyc
| | |-- wsgi.cpython-311.pyc
| |-- settings.py
| |-- _init_.py
| |-- asgi.py
| |-- wsgi.py
| |-- urls.py
|-- saudepublica/
| |-- _pycache_/
| | |-- _init_.cpython-311.pyc
| | |-- admin.cpython-311.pyc
| | |-- apps.cpython-311.pyc
| | |-- forms.cpython-311.pyc
| | |-- models.cpython-311.pyc
| | |-- urls.cpython-311.pyc
| | |-- utils.cpython-311.pyc
| | |-- views.cpython-311.pyc
| |-- migrations/
| | |-- _pycache_
| | | |-- _init_.cpython-311.pyc
| | | |-- 0001_initial.cpython-311.pyc
| | | |-- 0002_usuario.cpython-311.pyc
| | |-- _init_.py
| | |-- 0001_initial.py
| | |-- 0002_usuario.py
| |-- static/
| | |-- saudepublica
| | | |-- logo.png
| | | |-- rodape.png
| |-- templates/
| | |-- saudepublica/
| | |-- lista_hospitais.html
| | |-- lista_pacientes.html
| | |-- lista_registros_medicos.html
| | |-- adicionar_registro_medico.html
| | |-- adicionar_paciente.html
| | |-- login.html
| | |-- inicio.html
| | |-- mapa_leitos.html
| | |-- relatorio.html
| | |-- dashboards.html
| |-- __init__.py
| |-- admin.py
| |-- apps.py
| |-- forms.py
| |-- models.py
| |-- tests.py
| |-- urls.py
| |-- utils.py
| |-- views.py
|-- manage.py