https://github.com/postpdm/djangoenterprise
Django enterprise models
https://github.com/postpdm/djangoenterprise
Last synced: 5 months ago
JSON representation
Django enterprise models
- Host: GitHub
- URL: https://github.com/postpdm/djangoenterprise
- Owner: postpdm
- License: apache-2.0
- Created: 2019-05-06T04:35:30.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-08T07:16:50.000Z (about 7 years ago)
- Last Synced: 2024-12-30T03:45:46.903Z (over 1 year ago)
- Language: Python
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DjangoEnterprise
Django enterprise models, prepared for your projects.
# Profiles
Extended profile model for users, bots and organizations.
```python
from DjangoEnterprise.djangoenterprise.profiles import BaseProfile
class Profile(BaseProfile):
# your fields and methods
pass
```