seitime-frappe/docs/html/_sources/concepts.txt
2011-06-08 14:24:18 +05:30

30 lines
968 B
Text

Concepts
========
Structure
---------
The Framework is in two parts
1. Server-side - in Python
2. Client-side - in Javascript
The server-side framework contains all the logic for setting up the user session,
co-ordinating data between the user and managing roles and permissions.
The client-side renders all the widgets like menus, toolbars, forms, report builder etc and manages
data from the back end using AJAX
Developing an Application
-------------------------
Post installation, the application can be completely developed from the Browser. The Browser is the
in-built IDE for development. A usual development contains of the following steps
#. Designing of the database & input forms - :term:`DocType`
#. Designing of the reports - :term:`Report Builder`
#. Designing of the navigation and other pages - :term:`Page`
#. Creating and setting users and roles
#. Writing custom logic, events
See next section for how to build a new app.