Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

djgentelella

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

djgentelella

Help building extra widgets for forms and speciall methods to render forms in templates

  • 0.3.21
  • PyPI
  • Socket score

Maintainers
1

Django Gentelella widgets ############################

.. image:: https://img.shields.io/readthedocs/django-gentelella-widgets?label=Read%20the%20Docs&logo=read%20the%20docs&logoColor=white :alt: Gentelella documentation

.. image:: https://img.shields.io/pypi/pyversions/django :alt: Gentelella supported python version

.. image:: https://github.com/Solvosoft/django-gentelella-widgets/actions/workflows/django.yml/badge.svg :alt: Gentelella test status

This application is a set of utilities that will make developing applications with django and bootstrap 5 easier, as it provides a set of Javascript libraries such as select2, icheck, datatables and more nicely integrated as widgets or utilities that simplify application creation.

This app helps you to integrate Django apps with Gentelella <https://colorlib.com/polygon/gentelella/index.html>_ building extra widgets for forms and speciall methods to render forms in templates.

.. image:: docs/source/_static/readme/logo.png :width: 200 :alt: Gentelella Logo

Documentation


See Documentation <https://django-gentelella-widgets.readthedocs.io/>_

Installation


Installing from pypi

.. code:: bash

pip install djgentelella

Configure your settings

.. code:: bash

INSTALLED_APPS = [ ..
    'djgentelella',
    'rest_framework',
    'markitup',
]
MARKITUP_FILTER = ('markdown.markdown', {'safe_mode': True})
MARKITUP_SET = 'markitup/sets/markdown/'
JQUERY_URL = None

Run migrations

.. code:: bash

python manage.py migrate

Create statics files downloading from internet (you need to install requests for this step).

.. code:: bash

 pip install requests
 python manage.py loaddevstatic

Add djgentelella urls in your project urls.py file

.. code:: bash

from djgentelella.urls import urlpatterns as djgentelellaurls

urlpatterns = djgentelellaurls + [
                ...
              ]

Usage


In forms

.. code:: python

from djgentelella.forms.forms import GTForm
from djgentelella.widgets import core as genwidgets

class myform(GTForm, forms.ModelForm):
    class Meta:
        model = MyObject
        fields = '__all__'
        widgets = {
            'name': genwidgets.TextInput,
            'borddate': genwidgets.DateInput,
            'email': genwidgets.EmailMaskInput
        }

In templates working with forms

.. code:: html

 {{ form.as_plain }}
 {{ form.as_inline }}
 {{ form.as_horizontal }}

In templates using base template

.. code:: html

{% extends 'gentelella/base.html' %}

Take a look this file to note the template block that you can overwrite

Test


To run the all test use:

.. code:: bash

cd demo
python manage.py test

To run the responsive test use:

.. code:: bash

cd demo
python manage.py test demoapp.tests.selenium.responsive

Run the demo

.. code:: bash

cd demo
python manage.py migrate
python manage.py createdemo
python manage.py demomenu

And More see demo app.

Notes for development


base.js is autogenerated so you need to call

.. code:: bash

python manage.py createbasejs

Remember update the package version before make deploy it on server.

sudo apt install node-babel-cli npm webpack

Translation


To add a new translation for a word there are two options:

.. code:: bash

django-admin makemessages --all

This command adds words that are inside django templates to locale/es/LC_MESSAGES/django.po, there these words can be translated.

To add a word you can use the following syntax.

.. code:: html

{% trans "new_word" %}

For words used in JavaScript files, the following command must be executed.

.. code:: bash

django-admin makemessages -d djangojs -l es  --ignore *.min.js

This command adds words that are inside the gettext js function, to locale/es/LC_MESSAGES/djangojs.po, there these words can be translated.

Here is an example of gettext implementation:

.. code:: js

alert(gettext("new_word"))

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc