2018-01-16 06:58:15 +01:00
|
|
|
:banner: banners/build_a_website.jpg
|
|
|
|
|
|
|
|
.. queue:: website/series
|
|
|
|
|
|
|
|
==================
|
|
|
|
Building a Website
|
|
|
|
==================
|
|
|
|
|
|
|
|
.. warning::
|
|
|
|
|
|
|
|
* This guide assumes `basic knowledge of Python
|
2018-03-14 10:18:18 +01:00
|
|
|
<http://docs.python.org/3/tutorial/>`_
|
2018-02-12 08:55:56 +01:00
|
|
|
* This guide assumes :ref:`an installed Flectra <setup/install>`
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
Creating a basic module
|
|
|
|
=======================
|
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
In Flectra, tasks are performed by creating modules.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
Modules customize the behavior of an Flectra installation, either by adding new
|
2018-01-16 06:58:15 +01:00
|
|
|
behaviors or by altering existing ones (including behaviors added by other
|
|
|
|
modules).
|
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
:ref:`Flectra's scaffolding <reference/cmdline/scaffold>` can setup a basic
|
2018-01-16 06:58:15 +01:00
|
|
|
module. To quickly get started simply invoke:
|
|
|
|
|
|
|
|
.. code-block:: console
|
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
$ ./flectra-bin scaffold Academy my-modules
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
This will automatically create a ``my-modules`` *module directory* with an
|
|
|
|
``academy`` module inside. The directory can be an existing module directory
|
|
|
|
if you want, but the module name must be unique within the directory.
|
|
|
|
|
|
|
|
.. patch::
|
|
|
|
:hidden:
|
|
|
|
|
|
|
|
A demonstration module
|
|
|
|
======================
|
|
|
|
|
|
|
|
We have a "complete" module ready for installation.
|
|
|
|
|
|
|
|
Although it does absolutely nothing we can install it:
|
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
* start the Flectra server
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
.. code-block:: console
|
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
$ ./flectra-bin --addons-path addons,my-modules
|
2018-01-16 06:58:15 +01:00
|
|
|
|
2018-03-14 10:18:18 +01:00
|
|
|
* go to http://localhost:7073
|
2018-01-16 06:58:15 +01:00
|
|
|
* create a new database including demonstration data
|
|
|
|
* to go :menuselection:`Settings --> Modules --> Modules`
|
|
|
|
* in the top-right corner remove the *Installed* filter and search for
|
|
|
|
*academy*
|
|
|
|
* click the :guilabel:`Install` button for the *Academy* module
|
|
|
|
|
|
|
|
To the browser
|
|
|
|
==============
|
|
|
|
|
|
|
|
:ref:`Controllers <reference/http/controllers>` interpret browser requests and
|
|
|
|
send data back.
|
|
|
|
|
|
|
|
Add a simple controller and ensure it is imported by ``__init__.py`` (so
|
2018-02-12 08:55:56 +01:00
|
|
|
Flectra can find it):
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
.. patch::
|
|
|
|
|
|
|
|
Shut down your server (:kbd:`^C`) then restart it:
|
|
|
|
|
|
|
|
.. code-block:: console
|
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
$ ./flectra-bin --addons-path addons,my-modules
|
2018-01-16 06:58:15 +01:00
|
|
|
|
2018-03-14 10:18:18 +01:00
|
|
|
and open a page to http://localhost:7073/academy/academy/, you should see your
|
2018-01-16 06:58:15 +01:00
|
|
|
"page" appear:
|
|
|
|
|
|
|
|
.. figure:: website/helloworld.png
|
|
|
|
|
|
|
|
Templates
|
|
|
|
=========
|
|
|
|
|
|
|
|
Generating HTML in Python isn't very pleasant.
|
|
|
|
|
|
|
|
The usual solution is templates_, pseudo-documents with placeholders and
|
2018-02-12 08:55:56 +01:00
|
|
|
display logic. Flectra allows any Python templating system, but provides its
|
2018-01-16 06:58:15 +01:00
|
|
|
own :ref:`QWeb <reference/qweb>` templating system which integrates with other
|
|
|
|
features.
|
|
|
|
|
|
|
|
Create a template and ensure the template file is registered in the
|
|
|
|
``__manifest__.py`` manifest, and alter the controller to use our template:
|
|
|
|
|
|
|
|
.. patch::
|
|
|
|
|
|
|
|
The templates iterates (``t-foreach``) on all the teachers (passed through the
|
|
|
|
*template context*), and prints each teacher in its own paragraph.
|
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
Finally restart Flectra and update the module's data (to install the template)
|
2018-01-16 06:58:15 +01:00
|
|
|
by going to :menuselection:`Settings --> Modules --> Modules -->
|
|
|
|
Academy` and clicking :guilabel:`Upgrade`.
|
|
|
|
|
|
|
|
.. tip::
|
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
Alternatively, Flectra can be restarted :option:`and update modules at
|
|
|
|
the same time<flectra-bin -u>`:
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
.. code-block:: console
|
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
$ flectra-bin --addons-path addons,my-modules -d academy -u academy
|
2018-01-16 06:58:15 +01:00
|
|
|
|
2018-03-14 10:18:18 +01:00
|
|
|
Going to http://localhost:7073/academy/academy/ should now result in:
|
2018-01-16 06:58:15 +01:00
|
|
|
|
2018-03-14 10:18:18 +01:00
|
|
|
.. image:: website/flectra_basic-list.png
|
2018-01-16 06:58:15 +01:00
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
Storing data in Flectra
|
2018-03-14 10:18:18 +01:00
|
|
|
=======================
|
2018-01-16 06:58:15 +01:00
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
:ref:`Flectra models <reference/orm/model>` map to database tables.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
In the previous section we just displayed a list of string entered statically
|
|
|
|
in the Python code. This doesn't allow modifications or persistent storage
|
|
|
|
so we'll now move our data to the database.
|
|
|
|
|
|
|
|
Defining the data model
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
Define a teacher model, and ensure it is imported from ``__init__.py`` so it
|
|
|
|
is correctly loaded:
|
|
|
|
|
|
|
|
.. patch::
|
|
|
|
|
|
|
|
Then setup :ref:`basic access control <reference/security/acl>` for the model
|
|
|
|
and add them to the manifest:
|
|
|
|
|
|
|
|
.. patch::
|
|
|
|
|
|
|
|
this simply gives read access (``perm_read``) to all users (``group_id:id``
|
|
|
|
left empty).
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
:ref:`Data files <reference/data>` (XML or CSV) must be added to the
|
|
|
|
module manifest, Python files (models or controllers) don't but have to
|
|
|
|
be imported from ``__init__.py`` (directly or indirectly)
|
|
|
|
|
|
|
|
.. warning::
|
|
|
|
|
|
|
|
the administrator user bypasses access control, they have access to all
|
|
|
|
models even if not given access
|
|
|
|
|
|
|
|
Demonstration data
|
|
|
|
------------------
|
|
|
|
|
|
|
|
The second step is to add some demonstration data to the system so it's
|
|
|
|
possible to test it easily. This is done by adding a ``demo``
|
|
|
|
:ref:`data file <reference/data>`, which must be linked from the manifest:
|
|
|
|
|
|
|
|
.. patch::
|
|
|
|
|
|
|
|
.. tip::
|
|
|
|
|
|
|
|
:ref:`Data files <reference/data>` can be used for demo and non-demo data.
|
|
|
|
Demo data are only loaded in "demonstration mode" and can be used for flow
|
|
|
|
testing and demonstration, non-demo data are always loaded and used as
|
|
|
|
initial system setup.
|
|
|
|
|
|
|
|
In this case we're using demonstration data because an actual user of the
|
|
|
|
system would want to input or import their own teachers list, this list
|
|
|
|
is only useful for testing.
|
|
|
|
|
|
|
|
Accessing the data
|
|
|
|
------------------
|
|
|
|
|
|
|
|
The last step is to alter model and template to use our demonstration data:
|
|
|
|
|
|
|
|
#. fetch the records from the database instead of having a static list
|
2018-02-12 08:55:56 +01:00
|
|
|
#. Because :meth:`~flectra.models.Model.search` returns a set of records
|
2018-01-16 06:58:15 +01:00
|
|
|
matching the filter ("all records" here), alter the template to print each
|
|
|
|
teacher's ``name``
|
|
|
|
|
|
|
|
.. patch::
|
|
|
|
|
|
|
|
Restart the server and update the module (in order to update the manifest
|
|
|
|
and templates and load the demo file) then navigate to
|
2018-03-14 10:18:18 +01:00
|
|
|
http://localhost:7073/academy/academy/. The page should look slightly
|
2018-01-16 06:58:15 +01:00
|
|
|
different: names should simply be prefixed by a number (the database
|
|
|
|
identifier for the teacher).
|
|
|
|
|
|
|
|
Website support
|
|
|
|
===============
|
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
Flectra bundles a module dedicated to building websites.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
So far we've used controllers fairly directly, but Flectra 8 added deeper
|
2018-01-16 06:58:15 +01:00
|
|
|
integration and a few other services (e.g. default styling, theming) via the
|
|
|
|
``website`` module.
|
|
|
|
|
|
|
|
#. first, add ``website`` as a dependency to ``academy``
|
|
|
|
#. then add the ``website=True`` flag on the controller, this sets up a few
|
|
|
|
new variables on :ref:`the request object <reference/http/request>` and
|
|
|
|
allows using the website layout in our template
|
|
|
|
#. use the website layout in the template
|
|
|
|
|
|
|
|
.. patch::
|
|
|
|
|
|
|
|
After restarting the server while updating the module (in order to update the
|
2018-03-14 10:18:18 +01:00
|
|
|
manifest and template) access http://localhost:7073/academy/academy/ should
|
2018-01-16 06:58:15 +01:00
|
|
|
yield a nicer looking page with branding and a number of built-in page
|
|
|
|
elements (top-level menu, footer, …)
|
|
|
|
|
2018-03-14 10:18:18 +01:00
|
|
|
.. image:: website/flectra_layout.png
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
The website layout also provides support for edition tools: click
|
|
|
|
:guilabel:`Sign In` (in the top-right), fill the credentials in (``admin`` /
|
|
|
|
``admin`` by default) then click :guilabel:`Log In`.
|
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
You're now in Flectra "proper": the administrative interface. For now click on
|
2018-01-16 06:58:15 +01:00
|
|
|
the :guilabel:`Website` menu item (top-left corner.
|
|
|
|
|
|
|
|
We're back in the website but as an administrator, with access to advanced
|
|
|
|
edition features provided by the *website* support:
|
|
|
|
|
|
|
|
* a template code editor (:menuselection:`Customize --> HTML Editor`) where
|
|
|
|
you can see and edit all templates used for the current page
|
|
|
|
* the :guilabel:`Edit` button in the top-left switches to "edition mode" where
|
|
|
|
blocks (snippets) and rich text edition are available
|
|
|
|
* a number of other features such as mobile preview or :abbr:`SEO (Search
|
|
|
|
Engine Optimization)`
|
|
|
|
|
|
|
|
URLs and routing
|
|
|
|
================
|
|
|
|
|
|
|
|
Controller methods are associated with *routes* via the
|
2018-02-12 08:55:56 +01:00
|
|
|
:func:`~flectra.http.route` decorator which takes a routing string and a
|
2018-01-16 06:58:15 +01:00
|
|
|
number of attributes to customise its behavior or security.
|
|
|
|
|
|
|
|
We've seen a "literal" routing string, which matches a URL section exactly,
|
|
|
|
but routing strings can also use `converter patterns`_ which match bits
|
|
|
|
of URLs and make those available as local variables. For instance we can
|
|
|
|
create a new controller method which takes a bit of URL and prints it out:
|
|
|
|
|
|
|
|
.. patch::
|
|
|
|
|
2018-03-14 10:18:18 +01:00
|
|
|
restart Flectra, access http://localhost:7073/academy/Alice/ and
|
|
|
|
http://localhost:7073/academy/Bob/ and see the difference.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
As the name indicates, `converter patterns`_ don't just do extraction, they
|
|
|
|
also do *validation* and *conversion*, so we can change the new controller
|
|
|
|
to only accept integers:
|
|
|
|
|
|
|
|
.. patch::
|
|
|
|
|
2018-03-14 10:18:18 +01:00
|
|
|
Restart Flectra, access http://localhost:7073/academy/2, note how the old value
|
2018-01-16 06:58:15 +01:00
|
|
|
was a string, but the new one was converted to an integers. Try accessing
|
2018-03-14 10:18:18 +01:00
|
|
|
http://localhost:7073/academy/Carol/ and note that the page was not found:
|
2018-01-16 06:58:15 +01:00
|
|
|
since "Carol" is not an integer, the route was ignored and no route could be
|
|
|
|
found.
|
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
Flectra provides an additional converter called ``model`` which provides records
|
2018-01-16 06:58:15 +01:00
|
|
|
directly when given their id. Let's use this to create a generic page for
|
|
|
|
teacher biographies:
|
|
|
|
|
|
|
|
.. patch::
|
|
|
|
|
|
|
|
then change the list of model to link to our new controller:
|
|
|
|
|
|
|
|
.. patch::
|
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
Restart Flectra and upgrade the module, then you can visit each teacher's page.
|
2018-01-16 06:58:15 +01:00
|
|
|
As an exercise, try adding blocks to a teacher's page to write a biography,
|
|
|
|
then go to another teacher's page and so forth. You will discover, that your
|
|
|
|
biography is shared between all teachers, because blocks are added to the
|
|
|
|
*template*, and the *biography* template is shared between all teachers, when
|
|
|
|
one page is edited they're all edited at the same time.
|
|
|
|
|
|
|
|
Field edition
|
|
|
|
=============
|
|
|
|
|
|
|
|
Data which is specific to a record should be saved on that record, so let us
|
|
|
|
add a new biography field to our teachers:
|
|
|
|
|
|
|
|
.. patch::
|
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
Restart Flectra and update the views, reload the teacher's page and… the field
|
2018-01-16 06:58:15 +01:00
|
|
|
is invisible since it contains nothing.
|
|
|
|
|
|
|
|
.. todo:: the view has been set to noupdate because modified previously,
|
|
|
|
force via ``-i`` or do something else?
|
|
|
|
|
|
|
|
For record fields, templates can use a special ``t-field`` directive which
|
|
|
|
allows editing the field content from the website using field-specific
|
|
|
|
interfaces. Change the *person* template to use ``t-field``:
|
|
|
|
|
|
|
|
.. patch::
|
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
Restart Flectra and upgrade the module, there is now a placeholder under the
|
2018-01-16 06:58:15 +01:00
|
|
|
teacher's name and a new zone for blocks in :guilabel:`Edit` mode. Content
|
|
|
|
dropped there is stored in the corresponding teacher's ``biography`` field, and
|
|
|
|
thus specific to that teacher.
|
|
|
|
|
|
|
|
The teacher's name is also editable, and when saved the change is visible on
|
|
|
|
the index page.
|
|
|
|
|
|
|
|
``t-field`` can also take formatting options which depend on the exact field.
|
|
|
|
For instance if we display the modification date for a teacher's record:
|
|
|
|
|
|
|
|
.. patch::
|
|
|
|
|
|
|
|
it is displayed in a very "computery" manner and hard to read, but we could
|
|
|
|
ask for a human-readable version:
|
|
|
|
|
|
|
|
.. patch::
|
|
|
|
|
|
|
|
or a relative display:
|
|
|
|
|
|
|
|
.. patch::
|
|
|
|
|
|
|
|
Administration and ERP integration
|
|
|
|
==================================
|
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
A brief and incomplete introduction to the Flectra administration
|
2018-03-14 10:18:18 +01:00
|
|
|
-----------------------------------------------------------------
|
2018-01-16 06:58:15 +01:00
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
The Flectra administration was briefly seen during the `website support`_ section.
|
2018-01-16 06:58:15 +01:00
|
|
|
We can go back to it using :menuselection:`Administrator --> Administrator` in
|
|
|
|
the menu (or :guilabel:`Sign In` if you're signed out).
|
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
The conceptual structure of the Flectra backend is simple:
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
#. first are menus, a tree (menus can have sub-menus) of records. Menus
|
|
|
|
without children map to…
|
2018-02-12 08:55:56 +01:00
|
|
|
#. actions. Actions have various types: links, reports, code which Flectra should
|
2018-01-16 06:58:15 +01:00
|
|
|
execute or data display. Data display actions are called *window actions*,
|
2018-02-12 08:55:56 +01:00
|
|
|
and tell Flectra to display a given *model* according to a set of views…
|
2018-01-16 06:58:15 +01:00
|
|
|
#. a view has a type, a broad category to which it corresponds (a list,
|
|
|
|
a graph, a calendar) and an *architecture* which customises the way the
|
|
|
|
model is displayed inside the view.
|
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
Editing in the Flectra administration
|
2018-03-14 10:18:18 +01:00
|
|
|
-------------------------------------
|
2018-01-16 06:58:15 +01:00
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
By default, an Flectra model is essentially invisible to a user. To make it
|
2018-01-16 06:58:15 +01:00
|
|
|
visible it must be available through an action, which itself needs to be
|
|
|
|
reachable, generally through a menu.
|
|
|
|
|
|
|
|
Let's create a menu for our model:
|
|
|
|
|
|
|
|
.. patch::
|
|
|
|
|
2018-03-14 10:18:18 +01:00
|
|
|
then accessing http://localhost:7073/web/ in the top left should be a menu
|
2018-01-16 06:58:15 +01:00
|
|
|
:guilabel:`Academy`, which is selected by default, as it is the first menu,
|
|
|
|
and having opened a listing of teachers. From the listing it is possible to
|
|
|
|
:guilabel:`Create` new teacher records, and to switch to the "form" by-record
|
|
|
|
view.
|
|
|
|
|
|
|
|
If there is no definition of how to present records (a
|
2018-02-12 08:55:56 +01:00
|
|
|
:ref:`view <reference/views>`) Flectra will automatically create a basic one
|
2018-01-16 06:58:15 +01:00
|
|
|
on-the-fly. In our case it works for the "list" view for now (only displays
|
|
|
|
the teacher's name) but in the "form" view the HTML ``biography`` field is
|
|
|
|
displayed side-by-side with the ``name`` field and not given enough space.
|
|
|
|
Let's define a custom form view to make viewing and editing teacher records
|
|
|
|
a better experience:
|
|
|
|
|
|
|
|
.. patch::
|
|
|
|
|
|
|
|
Relations between models
|
|
|
|
------------------------
|
|
|
|
|
|
|
|
We have seen a pair of "basic" fields stored directly in the record. There are
|
|
|
|
:ref:`a number of basic fields <reference/orm/fields/basic>`. The second
|
|
|
|
broad categories of fields are :ref:`relational
|
|
|
|
<reference/orm/fields/relational>` and used to link records to one another
|
|
|
|
(within a model or across models).
|
|
|
|
|
|
|
|
For demonstration, let's create a *courses* model. Each course should have a
|
|
|
|
``teacher`` field, linking to a single teacher record, but each teacher can
|
|
|
|
teach many courses:
|
|
|
|
|
|
|
|
.. patch::
|
|
|
|
|
|
|
|
let's also add views so we can see and edit a course's teacher:
|
|
|
|
|
|
|
|
.. patch::
|
|
|
|
|
|
|
|
It should also be possible to create new courses directly from a teacher's
|
|
|
|
page, or to see all the courses they teach, so add
|
2018-02-12 08:55:56 +01:00
|
|
|
:class:`the inverse relationship <flectra.fields.One2many>` to the *teachers*
|
2018-01-16 06:58:15 +01:00
|
|
|
model:
|
|
|
|
|
|
|
|
.. patch::
|
|
|
|
|
|
|
|
Discussions and notifications
|
|
|
|
-----------------------------
|
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
Flectra provides technical models, which don't directly fulfill business needs
|
2018-01-16 06:58:15 +01:00
|
|
|
but which add capabilities to business objects without having to build
|
|
|
|
them by hand.
|
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
One of these is the *Chatter* system, part of Flectra's email and messaging
|
2018-01-16 06:58:15 +01:00
|
|
|
system, which can add notifications and discussion threads to any model.
|
2018-02-12 08:55:56 +01:00
|
|
|
The model simply has to :attr:`~flectra.models.Model._inherit`
|
2018-01-16 06:58:15 +01:00
|
|
|
``mail.thread``, and add the ``message_ids`` field to its form view to display
|
|
|
|
the discussion thread. Discussion threads are per-record.
|
|
|
|
|
|
|
|
For our academy, it makes sense to allow discussing courses to handle e.g.
|
|
|
|
scheduling changes or discussions between teachers and assistants:
|
|
|
|
|
|
|
|
.. patch::
|
|
|
|
|
|
|
|
At the bottom of each course form, there is now a discussion thread and the
|
|
|
|
possibility for users of the system to leave messages and follow or unfollow
|
|
|
|
discussions linked to specific courses.
|
|
|
|
|
|
|
|
Selling courses
|
|
|
|
---------------
|
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
Flectra also provides business models which allow using or opting in business
|
2018-01-16 06:58:15 +01:00
|
|
|
needs more directly. For instance the ``website_sale`` module sets up an
|
2018-02-12 08:55:56 +01:00
|
|
|
e-commerce site based on the products in the Flectra system. We can easily make
|
2018-01-16 06:58:15 +01:00
|
|
|
course subscriptions sellable by making our courses specific kinds of
|
|
|
|
products.
|
|
|
|
|
|
|
|
Rather than the previous classical inheritance, this means replacing our
|
|
|
|
*course* model by the *product* model, and extending products in-place (to
|
|
|
|
add anything we need to it).
|
|
|
|
|
|
|
|
First of all we need to add a dependency on ``website_sale`` so we get both
|
|
|
|
products (via ``sale``) and the ecommerce interface:
|
|
|
|
|
|
|
|
.. patch::
|
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
restart Flectra, update your module, there is now a :guilabel:`Shop` section in
|
2018-01-16 06:58:15 +01:00
|
|
|
the website, listing a number of pre-filled (via demonstration data) products.
|
|
|
|
|
|
|
|
The second step is to replace the *courses* model by ``product.template``,
|
|
|
|
and add a new category of product for courses:
|
|
|
|
|
|
|
|
.. patch::
|
|
|
|
|
|
|
|
With this installed, a few courses are now available in the :guilabel:`Shop`,
|
|
|
|
though they may have to be looked for.
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
* to extend a model in-place, it's :attr:`inherited
|
2018-02-12 08:55:56 +01:00
|
|
|
<flectra.models.Model._inherit>` without giving it a new
|
|
|
|
:attr:`~flectra.models.Model._name`
|
2018-01-16 06:58:15 +01:00
|
|
|
* ``product.template`` already uses the discussions system, so we can
|
|
|
|
remove it from our extension model
|
|
|
|
* we're creating our courses as *published* by default so they can be
|
|
|
|
seen without having to log in
|
|
|
|
|
|
|
|
Altering existing views
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
So far, we have briefly seen:
|
|
|
|
|
|
|
|
* the creation of new models
|
|
|
|
* the creation of new views
|
|
|
|
* the creation of new records
|
|
|
|
* the alteration of existing models
|
|
|
|
|
|
|
|
We're left with the alteration of existing records and the alteration of
|
|
|
|
existing views. We'll do both on the :guilabel:`Shop` pages.
|
|
|
|
|
|
|
|
View alteration is done by creating *extension* views, which are applied on
|
|
|
|
top of the original view and alter it. These alteration views can be added or
|
|
|
|
removed without modifying the original, making it easier to try things out and
|
|
|
|
roll changes back.
|
|
|
|
|
|
|
|
Since our courses are free, there is no reason to display their price on the
|
|
|
|
shop page, so we're going to alter the view and hide the price if it's 0. The
|
|
|
|
first task is finding out which view displays the price, this can be done via
|
|
|
|
:menuselection:`Customize --> HTML Editor` which lets us read the various
|
|
|
|
templates involved in rendering a page. Going through a few of them, "Product
|
|
|
|
item" looks a likely culprit.
|
|
|
|
|
|
|
|
Altering view architectures is done in 3 steps:
|
|
|
|
|
|
|
|
#. Create a new view
|
|
|
|
#. Extend the view to modify by setting the new view's ``inherit_id`` to the
|
|
|
|
modified view's external id
|
|
|
|
#. In the architecture, use the ``xpath`` tag to select and alter elements
|
|
|
|
from the modified view
|
|
|
|
|
|
|
|
.. patch::
|
|
|
|
|
|
|
|
The second thing we will change is making the product categories sidebar
|
|
|
|
visible by default: :menuselection:`Customize --> Product Categories` lets
|
|
|
|
you toggle a tree of product categories (used to filter the main display) on
|
|
|
|
and off.
|
|
|
|
|
|
|
|
This is done via the ``customize_show`` and ``active`` fields of extension
|
|
|
|
templates: an extension template (such as the one we've just created) can be
|
|
|
|
*customize_show=True*. This choice will display the view in the :guilabel:`Customize`
|
|
|
|
menu with a check box, allowing administrators to activate or disable them
|
|
|
|
(and easily customize their website pages).
|
|
|
|
|
|
|
|
We simply need to modify the *Product Categories* record and set its default
|
|
|
|
to *active="True"*:
|
|
|
|
|
|
|
|
.. patch::
|
|
|
|
|
|
|
|
With this, the *Product Categories* sidebar will automatically be enabled when
|
|
|
|
the *Academy* module is installed.
|
|
|
|
|
|
|
|
.. _templates: http://en.wikipedia.org/wiki/Web_template
|
|
|
|
.. _postgres:
|
|
|
|
.. _postgresql:
|
|
|
|
http://www.postgresql.org
|
|
|
|
.. _converter pattern:
|
|
|
|
.. _converter patterns:
|
|
|
|
http://werkzeug.pocoo.org/docs/routing/#rule-format
|