您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

31 行
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.