Metadata-Version: 2.1
Name: wagtail-admin-preview
Version: 0.1.0
Summary: Simple Page Preview Tab in Wagtail Admin Panel
Home-page: https://github.com/sadat-sakif-ahmed/wagtail-admin-preview
Author: Sadat Sakif Ahmed
Author-email: sadat_s_ahmed@outlook.com
Maintainer: Sadat Sakif Ahmed
Maintainer-email: sadat_s_ahmed@outlook.com
License: BSD
Keywords: django,wagtail,wagtail-cms,admin-preview
Platform: UNKNOWN
Classifier: Framework :: Wagtail
Classifier: Framework :: Django
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
Description-Content-Type: text/markdown
License-File: LICENSE

# Wagtail Admin Preview Tab

## Quick Start


1. Add `wagtail_admin_preview` to your `INSTALLED_APPS` settings file like this::

```python
    INSTALLED_APPS = [
        ...,
        'wagtail_admin_preview',
    ]
```
2. Start the development server and you will find the `preview` tab after the `content` tab in page editing view

## Purpose


The preview feature in wagtail admin requires you to open the page in another tab to preview.
This module simply adds another tab which shows you a preview of the latest draft saved without
requiring you to go open up another tab.

The default preview button is kept as is and the only addition is the preview tab so this has a
very minimal footprint on your project.

## Dependencies

This module requires:  
    1. Python >= 3.7 and  
    2. wagtail >= 3.0

