An enhanced permission system which support object permission in Django

**AuthorAlisue Supported python versionsPython 2.7, 3.3, 3.4, 3.5, 3.6Supported django versions**Django 1.8 – 1.11b An enhanced permission library which enables a logic-based permission system to handle complex permissions in Django. Documentation http://django-permission.readthedocs.org/en/latest/ Installation Use pip like: $ pip install django-permission Usage The following might help you to understand as well. Configuration Add permission to the INSTALLED_APPS in your settings module INSTALLED_APPS = ( # … ‘permission’, ) Add our extra authorization/authentication backend AUTHENTICATION_BACKENDS = ( ‘django.contrib.auth.backends.ModelBackend’, # default ‘permission.backends.PermissionBackend’, ) […]

Read more

HTML minifier for Python frameworks (not only Django, despite the name)

django-html is an HTML minifier for Python, with full support for HTML 5. It supports Django, Flask and many other Python web frameworks. It also provides a command line tool, that can be used for static websites or deployment scripts. Why minify HTML code? One of the important points on client side optimization is to minify HTML. With minified HTML code, you reduce the size of the data transferred from the server to the client, which results in faster load […]

Read more

The Definitive Django Learning Platform

The Definitive Django Learning Platform. This repository is a boilerplate Django project for quickly getting started. Getting started Steps: Clone/pull/download this repository Create a virtualenv with virtualenv env and install dependencies with pip install -r requirements.txt Configure your .env variables Rename your project with python manage.py rename This project includes: Settings modules for deploying with Azure Django commands for renaming your project and creating a superuser A cli tool for setting environment variables for deployment Other places you can find […]

Read more

A cool, modern and responsive django admin application based on bootstrap 5

A cool, modern and responsive django admin application based on bootstrap 5 Documentation: readthedocs Live Demo Now you can try django-baton using the new shining live demo! Login with user demo and password demo https://django-baton-demo.herokuapp.com/ Features Supports Django >= 2.1. For older versions of Django, please use [email protected] This application was written with one concept in mind: overwrite as few django templates as possible. Everything is styled through CSS and when required, JS is used. Based on Bootstrap 5 and […]

Read more

A buddy to help caregivers track sleep, feedings, diaper changes, and tummy time to learn about and predict baby’s needs

A buddy for babies! Helps caregivers track sleep, feedings, diaper changes, tummy time and more to learn about and predict baby’s needs without (as much) guess work. Demo A demo of Baby Buddy is available on Heroku. The demo instance resets every hour. Login credentials are: Username: admin Password: admin Deployment The default user name and password for Baby Buddy is admin/admin. For any deployment, log in and change the default admin password immediately. Many of Baby Buddy’s configuration settings […]

Read more

File and Image Management Application for django

django Filer is a file management application for django that makes handling of files and images a breeze. Contributing This is a an open-source project. We’ll be delighted to receive your feedback in the form of issues and pull requests. Before submitting your pull request, please review our contribution guidelines. We’re grateful to all contributors who have helped create and maintain this package. Contributors are listed at the contributors section. One of the easiest contributions you can make is helping […]

Read more

Open-source core of Pinry, a tiling image board system for people who want to save, tag, and share images, videos

The open-source core of Pinry, a tiling image board system for people who want to save, tag, and share images, videos and webpages in an easy to skim through format. For more information ( screenshots and document ) visit getpinry.com. Features Image fetch and online preview Tagging system for Pins Browser Extensions Multi-user support Works well with docker Both public and private boards (add @2020.02.11) Search by tags / Search boards with name (add @2020.02.14) Install with Docker See our […]

Read more

Simple application TodoList django with ReactJS

Django We basically follow the Django REST framework quickstart guide here. Create backend folder with a virtual Python environment: mkdir backend cd backend pipenv install; pipenv shell Install Django and Django REST framework: pipenv install django djangorestframework Create Django project structure: django-admin startproject backend . cd backend django-admin startapp todo cd .. Create Django super user: ./manage.py migrate ./manage.py createsuperuser –email    

Read more
1 4 5 6 7 8 9