You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage python3-django-debug-toolbar-5.0.1-1.lbn36.noarch
The Django Debug Toolbar is a configurable set of panels that display various debug information about the current request/response and when clicked, display more details about the panel's content. Currently, the following panels have been written and are working: - Django version - Request timer - A list of settings in settings.py - Common HTTP headers - GET/POST/cookie/session variable display - Templates and context used, and their template paths - SQL queries including time to execute and links to EXPLAIN each query - List of signals, their args and receivers - Logging output via Python's built-in logging, or via the logbook module
RPMPackage python3-django-debreach-2.0.1-8.lbn36.noarch
Basic/extra mitigation against the BREACH attack for Django projects. When combined with rate limiting in your web-server, or by using something like django-ratelimit, the techniques here should provide at least some protection against the BREACH attack.
RPMPackage python3-django-database-url-0.5.0-14.lbn36.noarch
This simple Django utility allows you to utilize the 12factor inspired DATABASE_URL environment variable to configure your Django application. This simple Django utility allows you to utilize the 12factor inspired DATABASE_URL environment variable to configure your Django application.
RPMPackage python3-django-crispy-forms-2.3-1.lbn36.noarch
The best way to have Django DRY forms. Build programmatic reusable layouts out of components, having full control of the rendered HTML without writing HTML in templates. All this without breaking the standard way of doing things in Django, so it plays nice with any other form application. django-crispy-forms supports Django 4.2+ with Python 3.8+. Looking for Bootstrap 5 support? See the crispy-bootstrap5 package. The application mainly provides: A filter named |crispy that will render elegant div based forms. Think of it as the built-in methods: as_table, as_ul and as_p. You cannot tune up the output, but it is easy to start using it. A tag named {% crispy %} that will render a form based on your configuration and specific layout setup. This gives you amazing power without much hassle, helping you save tons of time. Django-crispy-forms supports several frontend frameworks, such as Twitter Bootstrap (versions 2, 3, and 4), tailwind, Bulma and Foundation. You can also easily adapt your
RPMPackage python3-django-cors-headers-4.3.1-1.lbn36.noarch
A Django App that adds Cross-Origin Resource Sharing (CORS) headers to responses. This allows in-browser requests to your Django application from other origins. Improve your Django and Git skills with my books. About CORS Adding CORS headers allows your resources to be accessed on other domains. It’s important you understand the implications before adding the headers, since you could be unintentionally opening up your site’s private data to others. Some good resources to read on the subject are: Julia Evans’ introductory comic and educational quiz. Jake Archibald’s How to win at CORS The MDN Article The HTML5 Rocks Tutorial The Wikipedia Page Requirements Python 3.8 to 3.12 supported. Django 3.2 to 5.0 supported. Setup Install from pip: python -m pip install django-cors-headers and then add it to your installed apps: INSTALLED_APPS = [ ..., "corsheaders", ..., ] Make sure you add the trailing comma or you might get a ModuleNotFoundError (see this blog post). You will
RPMPackage python3-django-contrib-comments-2.0.0-5.lbn36.noarch
Django "excontrib" Comments Django used to include a comments framework; since Django 1.6 it's been separated to a separate project. This is that project.This framework can be used to attach comments to any model, so you can use it for comments on blog entries, photos, book chapters, or anything else.For details, consult the documentation. Documentation: https://django-contrib-comments.readthedocs.io/en/latest/
RPMPackage python3-django-contact-form-1.4.2-16.lbn36.noarch
An extensible contact-form application for Django
RPMPackage python3-django-configurations-2.2-9.lbn36.noarch
django-configurations eases Django project configuration by relying on the composability of Python classes. It extends the notion of Django's module based settings loading with well established object oriented programming patterns.
RPMPackage python3-django-compressor-4.3.1-1.lbn36.noarch
Django Compressor combines and compresses linked and inline Javascript or CSS in a Django templates into cacheable static files by using the ``compress`` template tag. HTML in between ``{% compress js/css %}`` and ``{% endcompress %}`` is parsed and searched for CSS or JS. These styles and scripts are subsequently processed with optional, configurable compilers and filters.
RPMPackage python3-django-cacheops-6.0-3.lbn36.noarch
A slick app that supports automatic or manual queryset caching and automatic granular event-driven invalidation. It uses redis as backend for ORM cache and redis or filesystem for simple time-invalidated one. And there is more to it: * decorators to cache any user function or view as a queryset or by time * extensions for django and jinja2 templates * transparent transaction support * dog-pile prevention mechanism * a couple of hacks to make django faster Python 3 version.
RPMPackage python3-django-cache-url-3.1.2-6.lbn36.noarch
This simple Django utility allows you to utilize the 12factor inspired CACHE_URL environment variable to configure your Django application.
RPMPackage python3-django-bootstrap4-22.1-1.lbn36.noarch
django-bootstrap 4[![CI]( [![Coverage Status]( [![Latest PyPI version]( [![Any color you like]( 4 integration for Django. GoalThe goal of this project is to seamlessly blend Django and Bootstrap 4.
RPMPackage python3-django-authority-0.11-19.lbn36.noarch
This is a Django app for generic per-object permissions, custom permission checks and permission requests. It also includes view decorators and template tags for ease of use. This package provides Python 3 build of django-authority.
RPMPackage python3-django-auth-ldap-2.4.0-2.lbn36.noarch
Django LDAP authentication backend.
RPMPackage python3-django-appconf-1.0.3-8.lbn36.noarch
A helper class for handling configuration defaults of packaged Django apps gracefully.
RPMPackage python3-django-annoying-0.10.6-4.fc36.noarch
Django-annoying is a django application that tries to eliminate annoying things in the Django framework. This package provides Python 3 build of django-annoying.
RPMPackage python3-django-angular-2.0.3-13.lbn36.noarch
Django-Angular is a collection of utilities, which aim to ease the integration of Django with AngularJS by providing reusable components.
RPMPackage python3-django-allauth-0.46.0-2.lbn36.noarch
Integrated set of Django applications addressing authentication, registration, account management as well as 3rd party (social) account authentication. Most existing Django apps that address the problem of social authentication focus on just that. You typically need to integrate another app in order to support authentication via a local account. This approach separates the worlds of local and social authentication. However, there are common scenarios to be dealt with in both worlds. For example, an e-mail address passed along by an OpenID provider is not guaranteed to be verified. So, before hooking an OpenID account up to a local account the e-mail address must be verified. So, e-mail verification needs to be present in both worlds. Integrating both worlds is quite a tedious process. It is definitely not a matter of simply adding one social authentication app, and one local account registration app to your INSTALLED_APPS list. This is the reason this project got started – to offer a fully integrated authentication app that allows for both local and social authentication, with flows that just work.
RPMPackage python3-django-ajax-selects-2.2.0-1.fc36.noarch
Enables editing of ForeignKey, ManyToMany and simple text fields using the Autocomplete - jQuery plugin. django-ajax-selects will work in any normal form as well as in the admin. The user is presented with a text field. They type a search term or a few letters of a name they are looking for, an ajax request is sent to the server, a search channel returns possible results. Results are displayed as a drop down menu. When an item is selected it is added to a display area just below the text field.
RPMPackage python3-django-5.1.3-1.lbn36.noarch
Django is a high-level Python Web framework that encourages rapid development and a clean, pragmatic design. It focuses on automating as much as possible and adhering to the DRY (Don't Repeat Yourself) principle.