# Web2Py-application-template **Repository Path**: mirrors_Unitech/Web2Py-application-template ## Basic Information - **Project Name**: Web2Py-application-template - **Description**: Application template for Web2Py including JS/CSS minification, logger... - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2026-02-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README + + +---------------------- Web2Py Template ------------------------+ + + This Web2Py application template include : +++++++++++++ CSS/JS combination/minification + App compilation directly on 'appadmin' 1# Include all your JS and CSS files in models/extra.py js_files = [ URL('static', 'js/jquery-1.5.2.js'), URL('static', 'js/main.js'), URL('static', 'js/shit.js') ] css_files = [ URL('static', 'css/base.css') ] 2# Then in the view include {{include 'layouts/js_css_include_from_extra.html'}} 3# To switch to production or development mode go to : http://localhost:8000/[APPLICATION_NAME]/appadmin/state +++++++++++++ A new tree organization ├── models │   ├── db.py // Distinction between Prod or not (disbling migration & co) + Configuration Mail + Auth │   ├── db_tables.py // DB models declaration │   └── extra.py // File to include (JS and CSS) └── views ├── appadmin.html ├── default │   └── index.html ├── __init__.py └── layouts ├── admin_layout.html ├── layout.html └── web2py_ajax.htm