Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
converting cv docs to prosa
Browse files Browse the repository at this point in the history
  • Loading branch information
lsaffre committed Sep 13, 2019
1 parent b275461 commit d800e0e
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions docs/specs/cv.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,38 @@ information about a client which can be used for example to generate a CV (a
:depth: 1
:local:


Concepts
========

.. glossary::

Language knowledge

The fact that a given person knows a given language at a given degree.

Database model: :class:`LanguageKnowledge`

- An **education** entry (fr: Éducation, de: Bildung) is when a given
person has followed lessons in a given *school* for a given
*period*. There are two basic types of education: **studies** (fr:
Études, de: Studium) and **trainings** (fr: Formation, de:
Ausbildung).

- A **Work experience** (fr: Expérience professionnelle, de:
Berufserfahrung) is when a given person has worked in a given
*organisation* for a given *period*.



.. include:: /../docs/shared/include/tested.rst

>>> from lino import startup
>>> startup('lino_book.projects.max.settings.demo')
>>> from lino.api.doctest import *



>>> UserTypes = rt.models.users.UserTypes
>>> AllLanguageKnowledges = rt.models.cv.AllLanguageKnowledges

Expand All @@ -41,3 +66,34 @@ False

>>> AllLanguageKnowledges.default_action.get_view_permission(a)
False



.. class:: LanguageKnowledge

Django model to represent a :term:`Language knowledge`.

.. attribute:: person

The person to which this entry applies.

.. attribute:: language

The language to which this entry applies.

.. attribute:: spoken
.. attribute:: written
.. attribute:: spoken_passively
.. attribute:: written_passively
.. attribute:: native
.. attribute:: cef_level

The CEF level. A pointer to a choice of :class:`CefLevels`

.. attribute:: has_certificate

Whether this entry is confirmed by a certificate.

.. attribute:: entry_date

When this entry was created.

0 comments on commit d800e0e

Please sign in to comment.