Table content type for feincms: copy-paste cells from spreadsheets to admin, get them displayed as html table on your website
Project description
feincms_simpletable is a feincms plugin that adds a new content type for tables. Just copy-paste your data from Calc or Office spreadsheet into SimpleTableContent in admin, and it will be automatically converted to html and rendered as such on your website
Current limitation: merged cells are not supported
Quick start
Add “feincms_simpletable” to your INSTALLED_APPS setting like this:
INSTALLED_APPS = ( ... 'feincms_simpletable', )
If you intend to use it as feincms content type, register SimpleTableContent for your Page model (or any other Base-derived model) like this:
from feincms_simpletable.models import SimpleTableContent # ... Page.create_content_type(SimpleTableContent) # tables will be rendered as # templates/content/feincms_simpletable/default.html
(optional) It is possible to define TYPE_CHOICES for SimpleTableContent if you want to render tables using different templates:
from feincms_simpletable.models import SimpleTableContent # ... Page.create_content_type(SimpleTableContent, TYPE_CHOICES=( ('default', 'default template'), ('other', 'some other template'), # ... (other types) ) ) # tables will be rendered as either of these, depending on admin choice: # templates/content/feincms_simpletable/default.html # templates/content/feincms_simpletable/other.html # ...
If you want to add SimpleTable fields to your existing models, simply subclass it:
class Product(Base, SimpleTable): # ...
Migrate your models
Usage
Add a SimpleTableContent to any feincms page in admin, then add data by copying it from your Calc or Excel spreadsheet into content field
Models inheriting from SimpleTable are editable just like any other django model
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
Built Distribution
File details
Details for the file feincms_simpletable-0.4.0.tar.gz
.
File metadata
- Download URL: feincms_simpletable-0.4.0.tar.gz
- Upload date:
- Size: 6.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f9aad599127843e457f041dfdc057eb2f16d1c42034cbfc486bf4b36c7f29d21 |
|
MD5 | 58b8718079e9b653e485bcad5d8727c4 |
|
BLAKE2b-256 | 04d9e11231a7e56963dd73dbfa87dd811d64d10d97f39ecc0e46acabf612552d |
File details
Details for the file feincms_simpletable-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: feincms_simpletable-0.4.0-py3-none-any.whl
- Upload date:
- Size: 9.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 100a6d2998852e314c7b11e4ef0c791719449ef07aef5431ab7268b92743dd0e |
|
MD5 | 54c296a7d9975e7bccaf80453f9f9f23 |
|
BLAKE2b-256 | 84ea5bff2c6ff81e6fd2b070cc1c63f452388d188148341e57ac171e38804787 |