A set of reusable base classes and helpers for django
Project description
django-pubtools is a helper library for creating publishable django models.
[![Circle CI](https://circleci.com/gh/gregplaysguitar/django-pubtools.svg?style=svg)](https://circleci.com/gh/gregplaysguitar/django-pubtools)
[![codecov](https://codecov.io/gh/gregplaysguitar/django-pubtools/branch/master/graph/badge.svg)](https://codecov.io/gh/gregplaysguitar/django-pubtools)
[![Latest Version](https://img.shields.io/pypi/v/django-pubtools.svg?style=flat)](https://pypi.python.org/pypi/django-pubtools/)
## Overview
Extend the `AbstractPublishableModel` class to create a publishable model class.
- Publishable content can be in either draft, preview, or published status.
- Draft content may be previewed on the site by a logged-in staff member
- Preview content may be previewed publicly, via a special url
## Installation
pip install django-pubtools
## Example implementation
models.py:
```python
from django.db import models
import pubtools.models
class Article(pubtools.models.AbstractPublishableModel):
title = models.CharField(max_length=100)
```
views.py:
```python
from django.http import HttpResponse
from .models import Article
def article(request, id):
# pass the request to enable staff preview
articles = Article.objects.published(request)
article = articles.get(id=id)
return HttpResponse(article.title)
```
admin.py:
```python
from django.contrib import admin
from baseclasses.admin import PublishableModelAdminMixin
from .models import Article
@admin.register(Article)
class ArticleAdmin(PublishableModelAdminMixin, admin.ModelAdmin):
list_display = ['title']
```
## Reference
### `pubtools.models.AbstractPublishableModel`
##### Model fields
- `created` (datetime, set on creation)
- `last_updated` (datetime, updated on save)
- `pub_date` (date)
- `pub_status` (one of draft, review or published)
##### Model methods
- `published` (property) return True if the instance is published
- `get_prev_published(qs=None, loop=False)` get previous published instance
- `get_next_published(qs=None, loop=False)` get next published instance
### `pubtools.models.PublishableModelQuerySet`
##### Manager/queryset methods
- `published(self, request=None)` If request is passed, and a preview status
flag is in request.GET, then check if the user is a staff member, and
return objects with the requested status if so. Otherwise, return only
published objects.
### `pubtools.admin.PublishableModelAdminMixin`
- Overrides `view_on_site` to add a flag to urls for draft/preview content.
- Adds a "Publish selected" action to the admin
[![Circle CI](https://circleci.com/gh/gregplaysguitar/django-pubtools.svg?style=svg)](https://circleci.com/gh/gregplaysguitar/django-pubtools)
[![codecov](https://codecov.io/gh/gregplaysguitar/django-pubtools/branch/master/graph/badge.svg)](https://codecov.io/gh/gregplaysguitar/django-pubtools)
[![Latest Version](https://img.shields.io/pypi/v/django-pubtools.svg?style=flat)](https://pypi.python.org/pypi/django-pubtools/)
## Overview
Extend the `AbstractPublishableModel` class to create a publishable model class.
- Publishable content can be in either draft, preview, or published status.
- Draft content may be previewed on the site by a logged-in staff member
- Preview content may be previewed publicly, via a special url
## Installation
pip install django-pubtools
## Example implementation
models.py:
```python
from django.db import models
import pubtools.models
class Article(pubtools.models.AbstractPublishableModel):
title = models.CharField(max_length=100)
```
views.py:
```python
from django.http import HttpResponse
from .models import Article
def article(request, id):
# pass the request to enable staff preview
articles = Article.objects.published(request)
article = articles.get(id=id)
return HttpResponse(article.title)
```
admin.py:
```python
from django.contrib import admin
from baseclasses.admin import PublishableModelAdminMixin
from .models import Article
@admin.register(Article)
class ArticleAdmin(PublishableModelAdminMixin, admin.ModelAdmin):
list_display = ['title']
```
## Reference
### `pubtools.models.AbstractPublishableModel`
##### Model fields
- `created` (datetime, set on creation)
- `last_updated` (datetime, updated on save)
- `pub_date` (date)
- `pub_status` (one of draft, review or published)
##### Model methods
- `published` (property) return True if the instance is published
- `get_prev_published(qs=None, loop=False)` get previous published instance
- `get_next_published(qs=None, loop=False)` get next published instance
### `pubtools.models.PublishableModelQuerySet`
##### Manager/queryset methods
- `published(self, request=None)` If request is passed, and a preview status
flag is in request.GET, then check if the user is a staff member, and
return objects with the requested status if so. Otherwise, return only
published objects.
### `pubtools.admin.PublishableModelAdminMixin`
- Overrides `view_on_site` to add a flag to urls for draft/preview content.
- Adds a "Publish selected" action to the admin
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-pubtools-2.0.4.tar.gz
(6.4 kB
view details)
File details
Details for the file django-pubtools-2.0.4.tar.gz
.
File metadata
- Download URL: django-pubtools-2.0.4.tar.gz
- Upload date:
- Size: 6.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c7dacdbc91c73275287ee7d0de8833928c4cc3f54cf2ffc67e52240be5cb6517 |
|
MD5 | feb9eec2c5dacebb8c3b5d2cbb159b1a |
|
BLAKE2b-256 | 1ee11f7c87d9016c75ec2555e26483949bb7b6ed450f3d3076133369a614e449 |