Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

123456789101112131415161718192021222324252627282930
  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.