Changes between Version 2 and Version 3 of SouceVersionControlOrganizationRevised
- Timestamp:
- 08/18/25 15:23:16 (28 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SouceVersionControlOrganizationRevised
v2 v3 3 3 4 4 {{{ 5 **DjangoProject3/** 5 DjangoProject3/ 6 6 │ 7 ├── **main/**8 │ ├── **migrations/**9 │ ├── **static/**10 │ ├── **templates/**11 │ ├── **templatetags/**12 │ ├── **utils/**13 │ ├── **__init__.py**14 │ ├── **admin.py**15 │ ├── **apps.py**16 │ ├── **context_processors.py**17 │ ├── **forms.py**18 │ ├── **models.py**19 │ ├── **tests.py**20 │ ├── **urls.py**21 │ └── **views.py**7 ├── main/ 8 │ ├── migrations/ 9 │ ├── static/ 10 │ ├── templates/ 11 │ ├── templatetags/ 12 │ ├── utils/ 13 │ ├── __init__.py 14 │ ├── admin.py 15 │ ├── apps.py 16 │ ├── context_processors.py 17 │ ├── forms.py 18 │ ├── models.py 19 │ ├── tests.py 20 │ ├── urls.py 21 │ └── views.py 22 22 }}} 23 23