partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

index.html.twig (6942B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
      2         "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
      3 <html>
      4 <head>
      5     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
      6     <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
      7     <title>PartKeepr</title>
      8 
      9     <base href="{{ app.request.getBaseURL() }}/"/>
     10 
     11     <!-- Include the ExtJS CSS Theme -->
     12     {% stylesheets
     13         filter='cssrewrite'
     14         'js/packages/extjs6/build/modern/theme-material/resources/theme-material-all.css'
     15         'bundles/partkeeprmobilefrontend/css/PartKeepr-mobile.css'
     16     %}
     17         <link rel="stylesheet" href="{{ asset_url }}"/>
     18     {% endstylesheets %}
     19 
     20     {% image '@PartKeeprFrontendBundle/Resources/public/images/favicon.ico' %}
     21         <link rel="icon" href="{{ asset_url }}"/>
     22     {% endimage %}
     23 
     24     {% if debug %}
     25         {% javascripts output='js/compiled/mobile_extjs-debug.js'
     26             'js/packages/extjs6/build/ext-modern-all-debug.js'
     27             'js/packages/extjs6/build/modern/theme-material/theme-material.js'
     28         %}
     29         <script type="text/javascript" src="{{ asset_url }}"></script>
     30         {% endjavascripts %}
     31     {% else %}
     32         {% javascripts output='js/compiled/mobile_extjs.js'
     33             'js/packages/extjs6/build/ext-modern-all.js'
     34             'js/packages/extjs6/build/modern/theme-material/theme-material.js'
     35         %}
     36         <script type="text/javascript" src="{{ asset_url }}"></script>
     37         {% endjavascripts %}
     38 
     39     {% endif %}
     40     {% javascripts output='js/compiled/mobile_main.js'
     41         '@PartKeeprFrontendBundle/Resources/public/js/Data/CallActions.js'
     42         '@PartKeeprFrontendBundle/Resources/public/js/Data/field/Array.js'
     43         '@PartKeeprFrontendBundle/Resources/public/js/Data/HydraModel.js'
     44         '@PartKeeprFrontendBundle/Resources/public/js/Data/HydraField.js'
     45         '@PartKeeprFrontendBundle/Resources/public/js/Data/HydraTreeModel.js'
     46         '@PartKeeprFrontendBundle/Resources/public/js/Data/store/ModelStore.js'
     47         '@PartKeeprFrontendBundle/Resources/public/js/Data/store/BaseStore.js'
     48         '@PartKeeprFrontendBundle/Resources/public/js/ExtJS/Bugfixes/Ext.form.field.Checkbox.EXTJS-21886.js'
     49         '@PartKeeprFrontendBundle/Resources/public/js/ExtJS/Enhancements/Ext.view.Table-renderCell.js'
     50         '@PartKeeprFrontendBundle/Resources/public/js/ExtJS/Enhancements/Ext.data.field.Date-ISO8601.js' %}
     51         <script type="text/javascript" src="{{ asset_url }}"></script>
     52 
     53     {% endjavascripts %}
     54 
     55 
     56 
     57 
     58 
     59     {% javascripts output='js/compiled/mobile_models.js'
     60         'bundles/doctrinereflection/*' %}
     61         <script type="text/javascript" src="{{ asset_url }}"></script>
     62     {% endjavascripts %}
     63 
     64     {% javascripts output='js/compiled/mobile_app.js'
     65         '@PartKeeprFrontendBundle/Resources/public/js/Data/store/PartStore.js'
     66         '@PartKeeprFrontendBundle/Resources/public/js/ExtJS/Enhancements/Ext.data.Store.getFieldValue.js'
     67         '@PartKeeprFrontendBundle/Resources/public/js/Util/i18n.js'
     68         '@PartKeeprFrontendBundle/Resources/public/js/Data/store/CurrencyStore.js'
     69         '@PartKeeprFrontendBundle/Resources/public/js/Data/ReflectionFieldTreeModel.js'
     70         '@PartKeeprFrontendBundle/Resources/public/js/Data/store/OperatorStore.js'
     71         '@PartKeeprFrontendBundle/Resources/public/js/Util/Blob.js'
     72         '@PartKeeprFrontendBundle/Resources/public/js/Util/FileSaver.js'
     73         '@PartKeeprFrontendBundle/Resources/public/js/Util/Filter.js'
     74         '@PartKeeprFrontendBundle/Resources/public/js/Components/Auth/LoginManager.js'
     75         '@PartKeeprFrontendBundle/Resources/public/js/Components/Widgets/PreferencePlugin.js'
     76         '@PartKeeprFrontendBundle/Resources/public/js/Components/Auth/AuthenticationProvider.js'
     77         '@PartKeeprFrontendBundle/Resources/public/js/Components/Auth/HTTPBasicAuthenticationProvider.js'
     78         '@PartKeeprFrontendBundle/Resources/public/js/Components/Auth/WSSEAuthenticationProvider.js'
     79         '@PartKeeprFrontendBundle/Resources/public/js/Data/store/UserProvidersStore.js'
     80         '@PartKeeprFrontendBundle/Resources/public/js/Data/store/UserPreferenceStore.js'
     81         '@PartKeeprFrontendBundle/Resources/public/js/Util/Crypto/isaac.js'
     82         '@PartKeeprFrontendBundle/Resources/public/js/Util/Crypto/bcrypt.js'
     83         '@PartKeeprFrontendBundle/Resources/public/js/Util/Crypto/core.js'
     84         '@PartKeeprFrontendBundle/Resources/public/js/Util/Crypto/x64-core.js'
     85         '@PartKeeprFrontendBundle/Resources/public/js/Util/Crypto/sha512.js'
     86         '@PartKeeprFrontendBundle/Resources/public/js/Util/Crypto/sha1.js'
     87         '@PartKeeprFrontendBundle/Resources/public/js/Util/Crypto/enc-base64.js'
     88         '@PartKeeprFrontendBundle/Resources/public/js/ExtJS/Bugfixes/Ext.data.Model-EXTJS-15037.js'
     89         '@PartKeeprFrontendBundle/Resources/public/js/Util/JsonWithAssociationsWriter.js'
     90         '@PartKeeprMobileFrontendBundle/Resources/public/js/PartKeeprMobile.js'
     91         '@PartKeeprFrontendBundle/Resources/public/js/compat.js'
     92         '@PartKeeprFrontendBundle/Resources/public/js/Util/ServiceCall.js'
     93         '@PartKeeprFrontendBundle/Resources/public/js/org.jerrymouse.util.locale/locale.js'
     94         '@PartKeeprFrontendBundle/Resources/public/js/Data/HydraException.js'
     95         '@PartKeeprFrontendBundle/Resources/public/js/Data/HydraProxy.js'
     96         '@PartKeeprFrontendBundle/Resources/public/js/Data/HydraReader.js'
     97         '@PartKeeprFrontendBundle/Resources/public/js/Data/HydraTreeReader.js'
     98         '@PartKeeprFrontendBundle/Resources/public/js/Actions/BaseAction.js'
     99         '@PartKeeprFrontendBundle/Resources/public/js/Actions/LogoutAction.js'
    100         '@PartKeeprFrontendBundle/Resources/public/js/Models/Message.js'
    101         '@PartKeeprMobileFrontendBundle/Resources/public/js/Components/Auth/LoginDialog.js'
    102         '@PartKeeprFrontendBundle/Resources/public/js/Components/Auth/LoginController.js'
    103         '@PartKeeprMobileFrontendBundle/Resources/public/js/Components/Part/PartPanel.js'
    104         '@PartKeeprMobileFrontendBundle/Resources/public/js/Components/Part/PartGrid.js'
    105         '@PartKeeprMobileFrontendBundle/Resources/public/js/Components/Part/PartController.js'
    106         '@PartKeeprMobileFrontendBundle/Resources/public/js/Components/Part/Details/Panel.js'
    107         '@PartKeeprMobileFrontendBundle/Resources/public/js/Components/Part/Details/Controller.js'
    108         '@PartKeeprMobileFrontendBundle/Resources/public/js/Components/Part/Details/Overview.js'
    109         '@PartKeeprFrontendBundle/Resources/public/js/php.default.min.js' %}
    110         <script type="text/javascript" src="{{ asset_url }}"></script>
    111     {% endjavascripts %}
    112 </head>
    113 <body>
    114 <div id="loader-wrapper">
    115     <div id="loader-logo"></div>
    116     <div id="loader"></div>
    117     <div id="loader-message"></div>
    118 </div>
    119 <script type="text/javascript">
    120     window.parameters = {{ parameters|json_encode|raw }};
    121 </script>
    122 </body>
    123 </html>