An app for creating bootstrap components on python level
Project description
django-bootstrap-swt - An app for creating bootstrap components on python level
django-bootstrap-swt simplifies the task of building HTML pages with bootstrap components by using the java swt concept. This reduces your html code duplication, cause you can use predefined bootstrap components.
- Available on pypi as django-bootstrap-swt
- Documentation on readthedocs.org
- Bug tracker
Features:
- Create any bootstrap component on backend level.
- Creates uniq id's for bootstrap components like accordion and modal to avoid id conflicts in javascript.
- supports async data fetching for modal and accordion components.
Example
Start by adding django_bootstrap_swt to your INSTALLED_APPS setting like this:
INSTALLED_APPS = (
...,
"django_bootstrap_swt",
)
Creating a bootstrap component is as simple as:
item_list = [ListGroupItem(left='text-at-the-left', center='text-at-the-center', right='text-at-the-right')
list_group = ListGroup(items=item_list)
my_modal = Modal(title=f'Details of {self.object.title}',
modal_body=list_group,
btn_value='Open modal',
btn_color=ButtonColorEnum.SECONDARY,
btn_tooltip='Click this button to open modal',
size=ModalSizeEnum.LARGE,)
All django-bootstrap-swt components returns the rendered template as string. So you can simply concatenate the components:
accordion_title = python_object.str_attribute + Badge(value='123')
If you need a SafeString instead of string you can call the render() function manually:
safe_string = Badge(value='123').render(safe=True)
Check out the documentation for more details.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django-bootstrap-swt-2.0.1.tar.gz.
File metadata
- Download URL: django-bootstrap-swt-2.0.1.tar.gz
- Upload date:
- Size: 29.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2df91f75415d6977a52d5a7f46e7dc8effbc24d5977e7a0f655867aeb59c16af
|
|
| MD5 |
61c04489e5446d4e429639d636d13a12
|
|
| BLAKE2b-256 |
93ed67fa8f287c5a88a48404b24b213ea9b27f2a9b0813709f300eb96d42d713
|
File details
Details for the file django_bootstrap_swt-2.0.1-py3-none-any.whl.
File metadata
- Download URL: django_bootstrap_swt-2.0.1-py3-none-any.whl
- Upload date:
- Size: 26.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
979a095af2e4ce8fa28538073b7810d06de3f826ab297603295ff342dc64d38c
|
|
| MD5 |
31bc200290c9735d804a33f730f589a5
|
|
| BLAKE2b-256 |
6d5521c72ed4fa4d9a06dc2b59547f652cf853a5614bd07ed20d7cb9cc8b9096
|