Metadata-Version: 2.0
Name: django-arctic
Version: 1.0.2
Summary: Django framework to create custom content management systems
Home-page: https://github.com/sanoma/django-arctic
Author: Sanoma Netherlands
Author-email: opensource@sanoma.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: django-betterforms (==1.1.4)
Requires-Dist: django-extra-views (==0.10.0)
Requires-Dist: setuptools

# Django Arctic
[![PyPi version](https://img.shields.io/pypi/v/django-arctic.svg)](https://pypi.python.org/pypi/django-arctic/)
[![Build Status](https://travis-ci.org/sanoma/django-arctic.svg?branch=develop)](https://travis-ci.org/sanoma/django-arctic)
[![Coverage Status](https://coveralls.io/repos/github/sanoma/django-arctic/badge.svg?branch=develop)](https://coveralls.io/github/sanoma/django-arctic)
[![Read the Docs](https://readthedocs.org/projects/django-arctic/badge/?version=latest)](https://django-arctic.readthedocs.io/en/latest/)

Django Arctic is a framework that speeds up the creation of custom content 
management systems.
It provides a Bootstrap 4 based user interface, role based authentication and
a number of generic Django Views that provide great looking and feature-rich 
lists and forms.

- The ListViews support sorting, searching, links, nested fields, 
  custom columns and data sources not only from databases but also from APIs
- The FormViews have enhanced widgets for DateTime, AutoComplete and 
  MultiSelect and also support custom layouts without having to create extra 
  templates.

![arctic screenshot](docs/img/arctic_screenshot.png)

## Why

There are a lot of content management systems in the market that are a good fit 
for the creation of many web sites.
Most CMS's make assumptions about the data model for posts, authentication and 
the administration interface.

There is however a tipping point, where customizing a CMS product
is so extensive that it ends up being better to use some lower level framework.

This is the case that Arctic wants to solve, creation of a CMS with a high 
degree of customization.
Instead of being a ready-to-use CMS, Arctic is a framework that facilitates the construction of content management systems.

## Compatibility

* Python 2.7, 3.5, 3.6
* Django 1.10, 1.11, 2.0


