forked from bartTC/django-generic-flatblocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
49 lines (36 loc) · 1.49 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
=========================
django-generic-flatblocks
=========================
If you want to add tiny snippets of text to your site, manageable by the admin
backend, you would use either `django-chunks`_ or `django-flatblocks`_.
However, both of them have one problem: you are limited to a predefined
content field; a "text" field in chunks and a "title" and "text" field in
flatblocks.
django-generic-flatblocks solves this problem as it knows nothing about the
content itself. You *attach* your hand made content node (a simple model) where
you can define any fields you want.
.. _`django-flatblocks`: http://github.com/zerok/django-flatblocks/tree/master
.. _`django-chunks`: http://code.google.com/p/django-chunks/
Documentation
=============
Documenation is available online under:
http://docs.mahner.org/django-generic-flatblocks/
Changelog
=========
-----------------------------
0.9.1 (backwards compatible):
-----------------------------
* Django 1.2 compatibility! Fixed a bug where tests did not pass under
Django 1.2. Thanks to Brian Rosner for this.
----------------------------
v0.9 (backwards compatible):
----------------------------
* Fixed a bug where an integer was not allowed as a part of a slug.
----------------------------
v0.4 (backwards compatible):
----------------------------
* Added Danish translation.
* Added better documentation.
* Added unittests.
* If you fetch a not existing "primary key" object the templatetag will fail
silently if settings.TEMPLATE_DEBUG is False.