Mikalai Radchuk
7f10938b57
Add docs about wagtailforms customisation
...
Fixes #2945
2017-01-25 21:34:25 +03:00
Matt Westcott
29645c0f6a
Mention addition to INSTALLED_APPS in routablepage docs
...
Fixes #3286
2017-01-23 17:07:19 +00:00
Matheus Bratfisch
b01376ad72
Add after/before_copy_page hooks, test and docs
2017-01-16 19:00:29 +00:00
Matt Westcott
1d4743d27c
Update project template + docs to clarify that wagtail_urls should appear at the end of urlpatterns
2017-01-13 17:06:52 +00:00
Matt Westcott
ff44666c36
Add note that wagtailforms is not a replacement for Django forms ( #3190 )
2016-12-05 18:19:59 +00:00
Chris Rogers
89e985d02a
added convenience method in_site and tests
2016-11-30 18:45:14 +00:00
Tim Heap
16213db0f8
Remove old versionadded notes
...
A step has been added to the release process notes to do this for future
releases as well.
https://github.com/torchbox/wagtail/wiki/Creating-a-new-Wagtail-release
2016-11-28 13:41:35 +00:00
Tim Heap
6ba34636cb
Fix whitespace errors in docs
...
Trimmed trailing whitespace, convert tabs to 4 spaces, add preference
for spaces to `.editorconfig`.
2016-11-28 13:41:35 +00:00
Tim Heap
254e675634
Use .. code-block:: console for all shell commands
...
This is the correct lexer for interactive console sessions, according to
<http://pygments.org/docs/lexers/ >. This does require command lines to
be prefixed with `$`, otherwise they are interpreted as the output of a
command. It highlights the command nicely, including environment
variables, strings, and comments.
2016-11-28 13:41:35 +00:00
Andy Babic
23eced1fcd
`Added support for 'exclude_from_explorer' attribute on ModelAdmin class
2016-11-23 16:51:08 +00:00
Albert O'Connor
a5b544631b
Update the Cloudflare backend to use the v4 API
...
Fixes #3146
2016-11-17 12:01:57 +00:00
Janneke Janssen
24eee6e41e
[FIX] Cloudfront docs typo ( #3143 )
2016-11-08 09:42:46 +00:00
Tim Heap
d377f0c521
Add Page.objects.first_common_ancestor() method
2016-10-26 13:01:46 +01:00
Andy Babic
78f67f8fdb
* Gives the result_row_display control over the <tr> element for each row in IndexView by shifting the <tr> out of result_list.html and into result_row.html
...
* `result_row_display` adds a `data-object_pk` attribute to each row, to make items easier to identify with JS
* Adds `get_extra_attrs_for_row()` method to `ModelAdmin`, to give developers a way of adding further attributes to the `<tr>` element
2016-10-21 17:20:54 +01:00
Tom Dyson
512bf8936d
single typo in Cloudfront docs ( #3099 )
2016-10-20 15:25:27 +01:00
Henk-Jan van Hasselaar
8a3c47f76a
Use get_admin_display_title in admin
2016-10-13 15:46:12 +01:00
Gagaro
9710c292eb
Added getters for templates in AbstractForm
2016-10-13 15:08:49 +01:00
Mikalai Radchuk
2e1c58a586
Release notes for #3047
2016-10-10 14:24:01 +03:00
Axel Haustant
e893dd895b
Allows to define custom site settings edit handler
...
Added site settings edit handler tests
Ensure proper setting rendering with tabs
2016-10-10 14:23:57 +03:00
Mikalai Radchuk
90552bedb5
Fix site ref in docs
2016-10-01 22:04:46 +03:00
Andy Babic
0c1b67bc16
Add documentation to help with customisation of contrib.modeladmin
2016-09-28 20:52:19 +01:00
riceyrice
5869bc37bb
Allow configuration or override of QueryDailyHits garbage collection
2016-09-22 14:21:38 +01:00
Mikalai Radchuk
fb93a6d6b9
Allow to limit access to form submissions ( #3016 )
...
Add the filter_form_submissions_for_user hook
Thanks @kaedroho for the code review and docs.
2016-09-22 14:36:39 +03:00
Matt Westcott
89f4699a91
Fix underlines
2016-09-19 13:51:04 +01:00
Matt Westcott
8aa316c575
Correct description of 'title' class on FieldPanel - fixes #2990
2016-09-15 17:02:25 +01:00
Matt Westcott
b0aa210078
Recognise classname parameter on InlinePanel. Fixes #1316
2016-09-15 16:44:51 +01:00
Karl Hobley
4dc1ef05f8
Removed unused import from example
...
Thanks @timheap for spotting
2016-09-15 09:18:04 +01:00
Karl Hobley
8b9b2ced36
Docs for new hooks
2016-09-14 16:52:28 +01:00
Luiz Boaretto
24feca5333
Fix typo on modeladmin docs
2016-09-04 12:43:39 -03:00
Matt Westcott
1d5475672e
Release note for #2577
2016-09-01 16:20:57 +01:00
dirtycoder
959723eddb
Create a panel to display informations about the submissions for form pages, fix #406
2016-09-01 15:22:30 +01:00
Karl Hobley
cdcdb4a4cd
Update frontendcache.rst
2016-08-29 16:38:26 +01:00
Karl Hobley
692c4017f9
Changelog and release note for #1845
2016-08-29 15:24:53 +01:00
Rob Moorman
df45c215a2
Added support for AWS CloudFront in Frontend cache invalidation module ( #1845 )
...
* added base cloudfrontbackend and testcase
* added boto3 cloudfront client
* implemented create invalidation method
added error handling botocore
* added aws docs
* fixed typo
* flake8 fixes
* added boto3 configuration docs
* removed return
* purge path instead of full url
* added multisite hostname mapping
* added validation of DISTRIBUTION_ID
* renamed Cloudfront to CloudFront
* added note to include www in mapping
added tests for cloudfront site mapping
* removed deprecated has_key, used in
fixed _create_invalidation
* changed type checking of dict
removed debug line of code to check hostname
* fixed dict type checking condition
added assert t make sure no invalid cache is being purged
* changed import order
* fixed isort error
* more detailed error message for cloudfront
pep8 fixes 120 chars per line
* Log missing cloudfront distribution id as info
Was logging as error, but it may be possible that a developer wants cloudfront on only specific hostnames.
* , => .
* Docs edits
* Removed hard-dependency on boto3
2016-08-29 15:15:27 +01:00
Matt Westcott
5dee12508d
Mark django-medusa as no longer maintained
2016-07-29 15:54:52 +01:00
Matt Westcott
bdd80dd33e
Fix styling of email fields in AbstractEmailForm example ( #2821 )
...
classname="full" is incorrect here (it generates excessive padding); also, using a FieldRowPanel
can make the display neater.
2016-07-08 16:47:54 +03:00
Mikalai Radchuk
0b29ba80db
Makes notes for settings module more visible ( #2826 )
2016-07-06 19:01:09 +03:00
Andreas Nüßlein
5b72f81327
mention edit_handler in this context ( #2716 )
2016-06-15 13:54:54 +01:00
Matt Westcott
bdaf696cd2
Release note / docs for #2257
2016-06-10 14:26:30 +01:00
Andreas Nüßlein
8e6c9f555f
Update staticsitegen.rst ( #2647 )
...
added python3 hint for http.server
2016-05-30 18:28:48 +01:00
Alex Gleason
8d5d29c2f3
Rename table_block.fields to table_block.blocks
2016-05-18 15:51:54 +01:00
Brad Busenius
53dfe6f5de
Added documentation for table_block.
2016-05-11 15:16:06 +01:00
Karl Hobley
e72b25f61c
Make api_fields a list
...
All other model attribute settings in Wagtail use lists now. This commit changes the api_fields docs to use a list as well.
Both list and tuple work, but list is now the recommended option
2016-05-10 19:35:41 +03:00
Karl Hobley
9dcc12ac55
Fix a typo in model reference
2016-05-10 14:28:34 +01:00
Tim Heap
facd66cf82
Use code-block:: python for a code example in docs
2016-05-08 04:59:34 +02:00
Philipp Dieter
d247fe9bf6
Fix name of ForeignKey object
2016-05-08 04:50:37 +02:00
Tim Heap
b727ec4064
Add documentation on the base_form_class attribute
2016-05-03 14:00:21 +01:00
Robert Rollins
7523d7f57f
Removed all uses of STATIC_URL from code samples, replaced with static().
...
Concatinating with settings.STATIC_URL is no longer reccomended for creating
URLs to static resources, because it doesn't take the configured storage engine
into account. For example, a site using S3 to store its static files will need
static URLs that link out to S3, rather than relative URLs within the same
domain.
I replaced it with django.contrib.staticfiles.templatetags.staticfiles.static()
in python example code, and the {% static %} tag in template examples.
2016-04-28 10:57:22 +01:00
Robert Rollins
11793f88c5
Changed indentation on all code samples to 4 spaces.
...
Most of the samples were already 4-space indented, but a few were using 2-space,
which is both inconsistent and, when it happened with Python code samples,
incompatible with PEP8.
2016-04-28 10:57:22 +01:00
Robert Rollins
1a9caccdcd
The "code-block:: json" tag doesn't work for full HTML response text.
...
You get a lexer error from the document builder if you use "code-block:: json",
and the json-style highlighting ends up not being applied. So I switched it to
"code-block:: text".
2016-04-28 10:57:22 +01:00
Andy Babic
dcb67dcfdf
Added wagtailmodeladmin to contrib with docs
2016-04-14 15:03:49 +01:00
Karl Hobley
b978fb826f
Added --schema-only flag to update_index command
2016-04-12 16:21:46 +01:00
Karl Hobley
2e970f88ea
Changelog and release note for #2451
2016-04-12 06:57:27 +01:00
Tim Heap
31d2d43d5b
Add wagtail.contrib.settings.jinja2tags ( #2451 )
2016-04-12 06:49:32 +01:00
Charlie Hornsby
5cb7ae01f6
FIx incorrect paginator label in example code ( #2468 )
2016-04-10 11:06:51 +01:00
Tomas Olander
10e564b935
Fix site settings docs for setting an icon
...
The "icon-" prefix is automatically added in SettingMenuItem.
Using "icon-placeholder" as suggested would thus result in
the CSS class "icon-icon-placeholder".
2016-04-01 10:50:03 +02:00
Tom Dyson
6dcb433215
CamelCase JavaScript in hooks documentation
2016-03-11 17:19:45 +00:00
Tom Dyson
43cb7f8e83
Hook for adding JS to all admin pages
...
Like insert_editor_js but not just for edit pages.
2016-03-11 17:19:45 +00:00
Matt Westcott
6803075188
Release notes for #1940
2016-03-11 15:43:43 +00:00
Josh Barr
a7d8a7bd4d
added documentation for page listing buttons
2016-03-11 15:43:42 +00:00
Loïc Teixeira
5429c007ad
Fix internal links
2016-03-06 21:05:05 +00:00
Loïc Teixeira
33aad3957f
Fix internal links with anchors
...
Generating links with `link text <./path/to/doc#anchor>`__ does not work for html.
It produces a link to `./path/to/doc#anchor` instead of `./path/to/doc.html#anchor`.
It would be tempting to add `.html` before `#` but would likely cause some more issues
when generating the documentation as pdf or epub.
References on the other hand will work regardless of the output format.
2016-03-06 21:05:05 +00:00
Matt Westcott
7861c2b492
Add get_site and get_url_parts to the Page model reference docs
2016-03-01 12:11:14 +00:00
Matt Westcott
d1a86c06da
documentation: now with 8.3% more underline
2016-02-29 15:03:28 +00:00
Matt Westcott
3195a5200f
Prevent deletion of collections that are non-empty
...
Since the collections infrastructure itself does not know about the object types that
can exist within collections, this requires a new hook `describe_collection_contents`
to allow collection contents to be discovered.
2016-02-29 13:14:10 +00:00
Matt Westcott
766e2501e4
Implement register_group_permission_panel hook for adding new panels to the group edit form
2016-02-29 13:14:05 +00:00
Tom Dyson
985a987436
Hook for adding CSS to all admin pages
2016-02-25 10:24:54 +02:00
Matt Westcott
d620ce9656
Document the construct_explorer_page_queryset hook
2016-02-12 11:15:13 +00:00
Matt Westcott
cddbc7c4a8
Remove 'versionadded:: 0.7' tags - 0.7 is ancient enough to be irrelevant
2016-02-11 10:53:03 +00:00
Matt Westcott
1677bd5a0d
insert_editor_css no longer provides a mechanism for custom SCSS
2016-02-11 10:53:03 +00:00
Matt Westcott
dc0d18b6a4
Reorganise Hooks reference into meaningful sections
2016-02-11 10:53:03 +00:00
Tim Heap
224f3f5c37
Remove final references to django-compressor
...
* Remove references from docs
* Fix comment in SCSS files, and fix related variable names
* Remove COMPRESS_ENABLED setting from tests
2016-02-09 18:41:56 +00:00
Matt
999e06af27
Fix parameter name on signal handler
2016-02-04 22:22:12 +00:00
Chris Rogers
5e589d6376
Minor adjustment to settings docs
2016-02-04 22:18:55 +00:00
Mitchel Cabuloy
d09d403d54
Fix frontend cache code example
2016-01-31 13:21:57 +08:00
Karl Hobley
13217dd6ef
WAGTAILAPI_MAX_RESULTS is actually called WAGTAILAPI_LIMIT_MAX
...
Fixes #2156
2016-01-27 11:21:06 +00:00
Matt Westcott
097f45f20b
Fix Page model recipes to pass 'self' as the page object ('page' is undefined)
2016-01-22 11:24:41 +00:00
Matt Westcott
88d1977d34
Document site_name attribute of Site - fixes #2099
2016-01-13 12:49:46 +00:00
Matt Westcott
04fdd5f352
Remove Django 1.7 support from documentation, requirements and CI definitions
2016-01-05 17:38:29 +00:00
Liam Brenner
b0f4d50aac
Minor documentation fixes for signal handlers
2016-01-05 10:29:20 +00:00
Karl Hobley
9d3e068b0c
Use Django 1.8 TEMPLATES setting in settings doc
...
Also, the ``request`` context processor is now in the defaults
2015-12-16 09:29:17 +00:00
Ben Kerle
3ef94d60a2
Documentation for admin search area hook
2015-12-14 21:21:45 +00:00
Maris Serzans
32b4124767
Changed verbose names to start with lowercase when necessary
2015-12-08 17:33:19 +00:00
Rich Brennan
11618f0c3d
Update content_panels and promote_panels.
...
If I'm right, the Echoer content_panels and promote_panels can be removed as they're defined on Page?
2015-12-03 18:55:01 +00:00
Tim Heap
0071d85aa0
Add Page methods can_move_to and can_create_at
...
These two tests are used when checking if a new page type can be created
under a page instance, or if an existing page type can move under a page
instance.
2015-12-03 12:56:52 +00:00
Matt Westcott
b1c75644f6
Stop replace_text from replacing multiple times on MTI subclasses.
...
Iterating over get_page_models means that these will be visited once
per superclass. To avoid this, we filter the page list to those exactly
matching the page class. This is done via a new `exact_type` method
on `PageQuerySet`.
2015-12-01 12:35:31 +00:00
Matt Westcott
06897db7c5
Add a get_page_models function to wagtailcore.models; deprecate direct use of PAGE_MODEL_CLASSES
2015-12-01 10:22:47 +00:00
Matt Westcott
c35ae95d9b
Document the remaining PageQuerySet methods
2015-11-30 22:16:08 +00:00
Rich Brennan
ce57281f6a
Move content_panels inside FormPage definition.
2015-11-24 10:36:30 +00:00
Matt Westcott
c025e1d3e5
Add a can_choose_root flag to PageChooserPanel.
...
This restores the previous behaviour, since there are plausible scenarios where choosing the root might be appropriate.
2015-11-02 15:12:42 +00:00
Matt Westcott
42af5c10af
Merge branch 'merge-settings' of https://github.com/takeflight/wagtail into takeflight-merge-settings
2015-10-23 10:31:27 +01:00
Matt Westcott
33e4a7497f
Release note / documentation update for #1790
2015-10-22 17:23:17 +01:00
Tim Heap
c9f73d3157
Fix typo in settings docs
2015-10-21 16:39:09 +11:00
Tim Heap
3d494fb24b
Move wagtailsettings into contrib module
...
The `wagtailsettings` module is useful enough that it should be included
in the Wagtail contrib section, to make it available to all Wagtail
developers.
All the code has been given a once-over to make sure it is nice and
polished before being copied in. As such, this is not a direct copy of
the `wagtailsettings` module. It should be backwards compatible though,
excepting the new location.
It has been moved to `wagtail.contrib.settings`, following the naming
scheme set out in #1504 .
Documentation has been concatenated in to a single page, and added to
the contrib reference section.
2015-10-21 16:39:09 +11:00
Matt Westcott
141129f587
Merge branch 'docs/signals' of https://github.com/JoshBarr/wagtail into JoshBarr-docs/signals
2015-10-16 17:23:04 +01:00
Matt Westcott
bebc4d4ed3
Remove mention of SASS / django-compressor; fix minor text errors
2015-10-15 09:21:47 +01:00
Matt Westcott
e1b564ee80
Merge branch 'cleanup/project-template-documentation' of https://github.com/timorieber/wagtail into timorieber-cleanup/project-template-documentation
2015-10-15 09:18:42 +01:00
Timo Rieber
f522b146b3
Removed vagrant configuration section
2015-10-15 08:11:16 +02:00
Timo Rieber
8e2c5cfd87
Synced structure to reflect current project template
2015-10-15 08:10:27 +02:00
Karl Hobley
6eae465e64
Renamed "self" template variable to "page" in docs
2015-10-13 09:52:16 +01:00
Matt Westcott
c21800b7b0
Merge branch 'inline-panel-min-max' of https://github.com/kaedroho/wagtail into kaedroho-inline-panel-min-max
...
Conflicts:
wagtail/wagtailadmin/edit_handlers.py
2015-10-09 15:42:54 +01:00
Matt Westcott
7d67e4b448
Minor copyediting on the Pages docs
2015-10-05 21:07:09 +01:00
Karl Hobley
1b282d49bc
Work on "Page models"
2015-10-05 21:07:09 +01:00
Karl Hobley
e1bb391625
editing_api => panels
2015-10-05 21:07:08 +01:00
Karl Hobley
85414a8b54
Fixed headings
2015-10-05 21:07:08 +01:00
Karl Hobley
f72b8302f9
Moved "setting up the page editor interface" into topics
2015-10-05 21:07:08 +01:00
Tim Heap
bc6b5a8a6c
Normalise all code blocks in the docs
...
All `.. code::` instances have been changed to use `.. code-block::`,
and have been properly formatted. The syntax names have been normalised,
so all django templates use the `html+django` syntax, shell commands use
`sh`, and plain text uses `text`.
2015-10-05 16:55:58 +01:00
Josh Barr
a324ea5b54
slim chances of career change to English teaching
2015-10-06 01:29:56 +13:00
Josh Barr
8036cff94b
added some basic signals docs
2015-10-06 01:18:25 +13:00
Josh Barr
221a3e5254
added docs about hostnames
2015-09-27 01:41:52 +12:00
Tim Heap
5df60caef3
Rename is_abstract to is_creatable
...
`is_creatable` better reflects what it is used for, and stops any
confusion between Wagtail's `is_abstract` and Django's `Meta.abstract`.
`is_creatable` takes in to account `Meta.abstract` now, so developers
will no longer need to set both `is_abstract` and `Meta.abstract`.
Documentation for the new attribute has been added, as well as tests.
2015-09-04 09:59:01 +10:00
Matt Westcott
e60e57016e
Merge branch 'bug/tagged-snippets' of https://github.com/takeflight/wagtail into takeflight-bug/tagged-snippets
...
Conflicts:
docs/topics/snippets.rst
2015-09-03 12:18:25 +01:00
Matt Westcott
2ed16e3ee2
Update documentation to indicate that SnippetChooserPanel no longer requires a snippet_type argument
2015-08-28 10:57:31 +01:00
Matt Westcott
7076e06ce7
Documentation for #1621
2015-08-25 16:15:31 +01:00
Tim Heap
537502b521
Add documentation for tagging snippets
2015-08-24 10:22:02 +10:00
Matt Westcott
85707d5925
Revert "Multiple page types in page chooser"
2015-08-11 18:00:05 +01:00
Tom Dyson
f8d2a9f456
Merge pull request #1565 from gasman/fix/remove-menu-classes
...
Remove all menu-{section_name} classnames on the <body> element and menu item <li>s
2015-08-11 12:39:03 +01:00
Karl Hobley
337a979257
#1582 - Fix typo in model reference
2015-08-05 14:13:00 +01:00
Nick Smith
b67426c86b
Merge branch 'master' into multiple-page-types-in-page-chooser
...
Conflicts:
wagtail/wagtailadmin/views/chooser.py
2015-08-03 18:11:38 +01:00
Nick Smith
38ee0991e6
Update #1533 according to feedback: docs and error message changes
2015-08-03 18:08:20 +01:00
Matt Westcott
a679d4f7f5
Remove all menu-{section_name} classnames on the <body> element and menu item <li>s.
...
These were introduced in 9d7d016b7c to support menu item highlighting, but this mechanism was superseded by #1186 . There's no sign of any code still using these classnames, and any code that relies on them would be liable to fail on non-English-language sites anyhow (since the menu item name is derived from the label by default, and the label is a translatable string).
2015-07-30 23:19:12 +01:00
Karl Hobley
459a8c8b44
Renamed searchpicks app to searchpromotions
2015-07-21 13:37:42 +01:00
Karl Hobley
0710facc03
{% get_search_picks %} => {% get_search_promotions %}
2015-07-21 13:37:42 +01:00
Karl Hobley
669c7ac34c
Docs for searchpicks module
2015-07-21 13:37:42 +01:00
Karl Hobley
faabc18ce7
Docs for multiple page types in PageChooserPanel
2015-07-20 14:55:58 +01:00
Karl Hobley
d7953cc501
Added min_num and max_num parameters to InlinePanel
...
Fixes #669
2015-07-19 20:32:41 +01:00
Karl Hobley
f84af79c7d
Merge branch 'wagtailapi-descendant-of'
2015-07-15 10:01:47 +01:00
Karl Hobley
d3b9779141
Docs for descendant_of API filter
2015-07-15 09:57:53 +01:00
Karl Hobley
ad25aec535
Merge pull request #1480 from kaedroho/model-reference-tweaks
...
Model reference formatting tweaks
2015-07-14 09:38:50 +01:00
Karl Hobley
26dde89011
Tweaks to model reference
...
Now formatted in a similar way Django formats model references
2015-07-07 09:18:22 +01:00
Karl Hobley
25e5b97680
Tweaks to headers
2015-07-06 19:22:48 +01:00
Karl Hobley
70e83e8821
modelcluster.tags => modelcluster.contrib.taggit
2015-07-06 09:29:18 +01:00
Tim Heap
7d7eece0d1
Add .specific() page queryset method
2015-06-29 15:53:18 +01:00
Karl Hobley
369d2d437a
Merge pull request #1422 from kaedroho/routablepage-docs-improvements
...
Improvements to RoutablePage docs
2015-06-24 09:52:29 +01:00
Karl Hobley
0ed4e26d63
Merge pull request #1423 from kaedroho/staticsitegen-example-fix
...
Update staticsitegen example to use new RoutablePage syntax
2015-06-19 11:40:49 +01:00
Karl Hobley
e2a331febe
Made listing view example a little bigger
2015-06-19 10:34:14 +01:00
Karl Hobley
94b18ad658
Fix reference to forms doc
2015-06-19 10:19:03 +01:00
Karl Hobley
ad2dfd81a2
Update staticsitegen example to use new RoutablePage syntax
2015-06-19 10:08:37 +01:00
Karl Hobley
e0a1802f7c
Improvements to RoutablePage docs
2015-06-19 09:55:30 +01:00
Karl Hobley
9713250c42
Moved theory doc into reference
2015-06-05 13:54:15 +01:00
Karl Hobley
7167b9bdab
Merge pull request #1353 from kaedroho/docs-tweaks
...
A little more restructuring of the docs
2015-06-05 13:29:54 +01:00
Karl Hobley
0cecb61862
Moved form builder to contrib
...
It will soon be contrib
2015-06-02 09:14:56 +01:00
Karl Hobley
201164ccb5
Moved page privacy to advanced topics
2015-06-02 09:14:55 +01:00
Karl Hobley
98692f9bfa
Moved snippets to topics
2015-06-02 09:14:20 +01:00
Karl Hobley
8c75baa271
Removed sendfile dependency
...
Not actually needed unless you're setting a SENDFILE_BACKEND and in that case, you'll know you need it.
2015-06-01 16:49:12 +01:00
Karl Hobley
3b26ddc162
Fixed module names for a few classes
2015-06-01 16:03:59 +01:00
Karl Hobley
f9f6d52670
Moved page editor customisation to customisation section
2015-05-30 23:17:39 +01:00
Karl Hobley
9885d2fb7d
Fix typos
2015-05-29 14:21:08 +01:00
Karl Hobley
77d143a099
Some edits to model reference
2015-05-29 12:53:48 +01:00
Karl Hobley
a0ddfc9fec
Tweak to the RoutablePageMixin examples
...
Use view names as defined in the example above
2015-05-28 15:18:18 +01:00