基于 Python 知名 Web 框架 Django 实现的无头内容管理系统,拥有清爽的 UI 和简洁易用的编辑器。独特的 StreamField 技术,可以让内容排版灵活又不失结构,再加上强大的多语言系统,让它在众多开源 CMS 中脱颖而出。

Matt Westcott 5728de51ef Version bump to 1.13.4 6 年之前
.github 609683ea2c Clarify "Steps to reproduce" in new issue template (#3610) 7 年之前
.tx 41dd5e89c8 Set up translations for modeladmin and table_block apps 8 年之前
client eea0664116 Change Sass linting configuration to take advantage of stylelint capabilities 7 年之前
docs f85a0e4308 Release notes for 1.13.4 6 年之前
etc 31a318d386 etc: add sample uwsgi and nginx configuration files 9 年之前
gulpfile.js 99853ad517 Prevent cssnano from 'optimising' z-index:9999 into z-index: 1. Fixes #3944 7 年之前
scripts 16439193a3 Update Travis config to work with on Trusty architecture (#3739) 7 年之前
wagtail 5728de51ef Version bump to 1.13.4 6 年之前
.coveragerc 66d7b283d8 Update .coveragerc 8 年之前
.editorconfig 6ba34636cb Fix whitespace errors in docs 8 年之前
.eslintignore 14f02a0b50 Tooling for modern front-end components: React JS, ES6, and BEM CSS 8 年之前
.eslintrc 2ff4a5aad1 Update explorer for latest scope, UI, with tests 7 年之前
.gitignore de72df922b Ignore npm-debug.log files with suffix 7 年之前
.nvmrc 91490566c2 Replace references to Node versions 7 年之前
.stylelintrc.yaml eea0664116 Change Sass linting configuration to take advantage of stylelint capabilities 7 年之前
.travis.yml 4bc4cacfbd Include a Django 1.11 + sqlite + Elasticsearch5 environment in the Travis test matrix 7 年之前
CHANGELOG.txt f85a0e4308 Release notes for 1.13.4 6 年之前
CODE_OF_CONDUCT.md 03c623b467 Add Contributor Covenant 8 年之前
CONTRIBUTING.md 7288a96950 Point people to Stack Overflow for support queries in preference to the Google group (#3255) 7 年之前
CONTRIBUTORS.rst 7372c6a24a Release note for #4480 in 1.12.4 6 年之前
LICENSE 679f15811e Add an initially empty django-wagtail package 10 年之前
MANIFEST.in 9393b93538 Improvements to MANIFEST.IN 8 年之前
Makefile a900965fba Fixes #3516 - replaces scss-lint with stylelint 7 年之前
README.rst 15965fd0cc Update README.rst 7 年之前
appveyor.yml 8decb577ce Add appyveyor config (#3505) 7 年之前
circle.yml a10e1f0761 Add CSS minification and source maps for Sass 7 年之前
codecov.yml 8cce0a45a8 Disable codecov's require_ci_to_pass mode 7 年之前
conftest.py d82e38e11e Implement support for using pytest (#2735) 8 年之前
package-lock.json b3e126d6b9 Update React to 15.6.2 due to relicensing (#3884) 7 年之前
package.json b3e126d6b9 Update React to 15.6.2 due to relicensing (#3884) 7 年之前
runtests.py 93cc470d4b Added Elasticsearch 5 backend tests 8 年之前
setup.cfg cecbfbf32d Extend known_third_party to include all other third party modules 7 年之前
setup.py 6c93032d98 Pin beautifulsoup to 4.6.0 6 年之前
tox.ini c577d15f13 Removes Django 1.10 HEAD from test matrix. 7 年之前

README.rst

.. image:: https://api.travis-ci.org/wagtail/wagtail.svg?branch=master
:target: https://travis-ci.org/wagtail/wagtail
.. image:: https://img.shields.io/pypi/l/wagtail.svg
:target: https://pypi.python.org/pypi/wagtail/
.. image:: https://img.shields.io/pypi/v/wagtail.svg
:target: https://pypi.python.org/pypi/wagtail/
.. image:: http://codecov.io/github/wagtail/wagtail/coverage.svg?branch=master
:target: http://codecov.io/github/wagtail/wagtail?branch=master


Wagtail CMS
===========

Wagtail is a content management system built on Django. It's focused on user experience,
and offers precise control for designers and developers.

.. image:: http://i.imgur.com/hSVerKq.jpg
:width: 728 px

Features
~~~~~~~~

* A fast, attractive interface for authors and editors
* Complete control over design with standard Django templates
* Configure content types through standard Django models
* Fast out of the box. Cache-friendly if you need it
* Tightly integrated search
* Strong document and image management
* Wide support for embedded content
* Straightforward integration with existing Django apps
* Simple, configurable permissions
* Workflow support
* An extensible `form builder `_
* Multi-site and multi-language support
* Excellent `test coverage `_

Find out more at `wagtail.io `_.

Getting started
~~~~~~~~~~~~~~~

.. code-block:: sh

pip install wagtail
wagtail start mysite
cd mysite
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver

then sign in at http://127.0.0.1:8000/admin/

For detailed installation and setup docs, see `docs.wagtail.io `_.

Who's using it?
~~~~~~~~~~~~~~~
`madewithwagtail.org `_ lists some of the public Wagtail sites we know about; please `add your own `_.

Documentation
~~~~~~~~~~~~~
`docs.wagtail.io `_ is the full reference for Wagtail, and includes guides for developers, designers and editors, alongside release notes and our roadmap.

Community Support
~~~~~~~~~~~~~~~~~
There is an active community of Wagtail users and developers responding to questions on `Stack Overflow `_. When posting questions, please read Stack Overflow's advice on `how to ask questions `_ and remember to tag your question with "wagtail".

For topics and discussions that do not fit Stack Overflow's question-and-answer format, there is also a `Wagtail Support mailing list `_.

Commercial Support
~~~~~~~~~~~~~~~~~~
Wagtail is sponsored by `Torchbox `_. If you need help implementing or hosting Wagtail, please contact us: hello@torchbox.com.

Thanks
~~~~~~
We thank `BrowserStack `_, who provide the project with free access to their live web-based browser testing tool, and automated Selenium cloud testing.

.. image:: https://cdn.rawgit.com/wagtail/wagtail/master/.github/browserstack-logo.svg
:target: https://www.browserstack.com/
:width: 219 px

Compatibility
~~~~~~~~~~~~~
Wagtail supports Django 1.8.x, 1.10.x and 1.11.x, on Python 2.7, 3.4, 3.5 and 3.6. Supported database backends are PostgreSQL, MySQL and SQLite.

Contributing
~~~~~~~~~~~~
If you're a Python or Django developer, fork the repo and get stuck in! We run a separate group for developers of Wagtail itself at https://groups.google.com/forum/#!forum/wagtail-developers (please note that this is not for support requests).

You might like to start by reviewing the `contributing guidelines `_ and checking issues with the `difficulty:Easy `_ label.

We also welcome translations for Wagtail's interface. Translation work should be submitted through `Transifex `_.