You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

31 line
968 B

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