Skip to content

Correct-Syntax/wagtail-versesblock

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Wagtail Verses Block

Simple and easy-to-setup Bible verse highlighter/formatter streamfield block for Wagtail CMS. Useful for quoting Scripture verses in a blog post, etc.

Screenshots

"Wagtail verses block result"

"Wagtail verses block admin"

Usage

Install via pip:

pip install wagtailversesblock

Import and add VersesBlock to models.py:

...

from wagtail.core.models import Page
from wagtail.core.fields import StreamField
...
from wagtailversesblock.blocks import VersesBlock

...

class ExamplePage(Page):

    ...

    body = StreamField([
        ('verses', VersesBlock()),
    ], null=True)

Development

Pull requests and/or feature suggestions are welcome!

License

Licensed under the BSD 3-Clause license

About

Bible verse highlighter/formatter streamfield block for Wagtail CMS.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published