Library to easy install, configure and use Semantic UI framework with Django project
Project description
Django Semantic UI
Easy python package that allow install, configure and use Semantic UI Framework with a Django project.
Requirements
- npm (last stable version)
- Python 2.7.x
- Django 1.11.x
Installing
- Install gulp (CLI), the version 3.9.1 is the available to work with Semantic UI Framework.
$ sudo npm install -g gulp@3.9.1
- Install the django-semantic-ui package:
$ pip install django-semantic-ui
- Configure django-semantic-ui in the settings.py:
INSTALLED_APPS = [
...,
'django_semantic_ui',
]
- Running the install command
$ python manage.py semantic_ui install
NOTE: You need to define the settings required to install semantic-ui module, see: Install Semantic
- You can use the follow options when the semantic-ui module is configured:
❯ Automatic (Use default locations and all components)
? We detected you are using NPM Nice! Is this your project folder? /home/franklinitiel/Documents/TSJ/projects/personal/python_tests/semanticui/static (Use arrow keys)
❯ Yes
? Where should we put Semantic UI inside your project? (semantic/) semantic
- Running the gulp build command
$ python manage.py semantic_ui gulp_build
Settings Development or Local environment
- Add 'django.template.context_processors.static' to context_processors option on the TEMPLATES settings
# settings.py
# TEMPLATES settings
'context_processors': [
...,
'django.template.context_processors.static',
...,
]
- Configure the static files and folder, see: Managing static files
STATIC_URL = '/static/'
- Add CSS and JS to your django project
{% load dsu %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Semantic UI Test</title>
{% dsu_stylesheet_url %}
</head>
<body>
<!-- Your HTML code -->
{% dsu_jquery_url %}
{% dsu_javascript_url %}
</body>
</html>
Settings Production environment
- Configure the static files and folder, see: Managing static files
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
- And execute the collectstatic command
$ python manage.py collectstatic
Additional settings
- GULP_VERSION by default is None, if you want to install a specific version of gulp module (local), you can use this settings, by example:
# settings.py
GULP_VERSION = '3.9.1'
- SEMANTIC_UI_VERSION by default is None, if you want to install a specific version of semantic-ui module (local), you can use this settings, by example:
# settings.py
SEMANTIC_UI_VERSION = '^2.4.2'
- SEMANTIC_DIRNAME by default is 'semantic'', if you have defined a custom dirname for the JS and CSS files when the Semantic UI Framework was installed (step 4), you need to add it on this settings.
# settings.py
SEMANTIC_DIRNAME = 'semantic'
- DSU_JQUERY_URL by default is 'https://code.jquery.com/jquery-3.1.1.min.js', if you have defined a custom path to you jquery, so, you can use this template tag.
# settings.py
DSU_JQUERY_URL = '...your jquery path...'
Uninstall django-semantic-ui
- You can uninstall Semantic UI Framework and Gulp (local version) using the follow command:
$ python manage.py semantic_ui uninstall && pip uninstall django-semantic-ui
Releases notes:
- 1.0.0: Initial and beta version (only installation and settings).
- 1.0.1: Bugs fixed semantic folder not found or not exists.
- 1.0.2: Bugs fixed semantid and static folders not found or not exists.
- 1.0.3: README.md file updated, bugs fixed self.semantic_ui_version undefined.
- 1.1.0: Logic updated to install / uninstall django-semantic-ui, new settings added.
- 1.1.1: Bugs fixed related with the semantic files path.
- 1.1.2: README.md updated
- 1.2.0: New templatetags added to load the javascripts and stylesheets files
- 1.2.1: Bugs fixed using the DSU_JQUERY_URL settings.
- 1.2.2: README.md updated, New static method added to load the STATIC_URL from django project.
- 1.2.3: README.md updated, bugs fixed to execute the command "python manage.py runserver" after installed.
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
File details
Details for the file django_semantic_ui-1.2.3.tar.gz
.
File metadata
- Download URL: django_semantic_ui-1.2.3.tar.gz
- Upload date:
- Size: 7.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d43971f84e92e57fd891fef7d96633b9df0aa53a2a006dc01e11fd2f51151f17 |
|
MD5 | 210cba4406e0d0ebe6f32b8d280c0693 |
|
BLAKE2b-256 | 6ad9866ea14c084f6d34353cff46c7544ef37a9ec1bb0a9abfa453141f3d2fc3 |