Djangocontact: Django Reusable Tags Application.
Project description
Djangotags : Django Reusable Tag Application.
Djangotags is a Reusable Django app which provides a full featured Tag Model. The Djangotag's Tag Model is rich features and powerful enough, You can start with Djangotags without installation of any 3rd party packages.
Installation :
You can install Djangotags from PyPI using pip.
pip install djanotags
Configuration :
1. Open the settings.py
module of your project, And put djangotags into INSTALLED_APPS
.
INSTALLED_APPS = ( 'taggit', 'djangotags', )
2. Open the urls.py
module of your project, And include djangotags URLs.
urlpatterns = [ ... re_path(r'^tag/', include('djangotags.urls')), ... ]
3. Setup the Templates for djangoadmin.
Important Note: Djangoadmin App is a part of Djangoengine project. And if you want to access UI part of Djangoadmin App, You need to configure some Reusable/global templates to your django project or you can create your own templates, It's very easy.
TEMPLATES = [ ... ... 'DIRS': [os.path.join(BASE_DIR, 'templates'),], ... ... ]
Create the templates
folder inside BASE_DIR
and Then create djangoadmin
folders inside the templates folder.
Then download the djangoadmin templates and put them inside the djangoadmin
folder.
4. Static files configuration.
Open your settings.py
module and Configure Static files and media files or you can can use your own configuration.
STATIC_URL = '/static/' STATICFILES_DIRS = (os.path.join(BASE_DIR, 'static-local'),) STATIC_ROOT = os.path.join(os.path.dirname(BASE_DIR), 'static-root', 'static') MEDIA_URL = '/media/' MEDIA_ROOT = os.path.join(os.path.dirname(BASE_DIR), 'static-root', 'media')
Create the static-local
folder inside BASE_DIR
, Then create djangoadmin
folders inside that static-local
folder.
And also download the djangoadmin static files and put them inside the djangoadmin
folder.
Complete the Djangocontact setup by running the following command one by one in the sequence.
python manage.py makemigrations python manage.py migrate python manage.py collectstatic python manage.py runserver
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for djangotags-2.2.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | efd99944cb49e98453211579349679ed7620ebc0cff69687debaf8582303daf2 |
|
MD5 | 0a7cd988d9afc633df7c172e46a30047 |
|
BLAKE2-256 | ef11d4df3efbea7de2910a41942a11a90ff01dc7087e110aeb3ffbe578328eef |