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.
 
 
 
 
 

34 lines
1.3 KiB

<?xml version="1.0" encoding="UTF-8"?>
<templates xml:space="preserve">
<!-- Define a template named "chatter_camera.camera" that extends the
"mail.ChatterTopbar" template to add camera to the view -->
<t t-name="chatter_camera.camera" t-inherit="mail.ChatterTopbar"
t-inherit-mode="extension" owl="1">
<xpath expr="//div[hasclass('o_ChatterTopbar_actions')]"
position="inside">
<button id="camera_button" type="button"
style="border:none;background-color:white;">
<i class="fa fa-camera-retro"/>
</button>
<center>
<div id="myModal" class="modal" style=" width:35%; height:58%;">
<div class="modal-content">
<header>
<video id="videoCam"/>
</header>
<footer>
<center>
<button id="click_photo"
t-on-click="ImageCapture">Capture</button>
<button id="stop-camera-button">Cancel</button>
</center>
</footer>
<span hidden="hidden">
<canvas id="canvas" width="150" height="100"/>
</span>
</div>
</div>
</center>
</xpath>
</t>
</templates>