Authenticated users ******************* An authenticated user has more options: .. graphviz:: :alt: Authenticated digraph model { node [shape=none]; edge [color=lightgray] rankdir=LR; home [URL="#home", image="images/thumb/home.png" ]; tests [URL="#tests", image="images/thumb/account_tests.png" ]; test [URL="#test", image="images/thumb/users_test.png" ]; account [URL="#account", image="images/thumb/account_data.png" ]; home -> account home -> tests tests -> test } Home ==== The opening page of eKorpus shows short introductory text and lists articles related to eKorpus. This form is generated by :meth:`~.AdminController.index`. .. image:: ../images/framed/home.png Account ======= Each user can manage own data with the next form. This form is handled by :meth:`~.AdminController.edit_mydata` and :meth:`~.AdminController.save`. .. image:: ../images/framed/account_data.png Tests ===== This page lists all the tests assigned for current user. This form is generated by :meth:`.TestsController.list`. .. image:: ../images/framed/account_tests.png Test ---- This is the test execution form. This form is generated by :meth:`.TestsController.test`. .. image:: ../images/framed/users_test.png