D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
www
/
resources
/
views
/
Filename :
print_manager.blade.php
back
Copy
<!Doctype html> <html> <head> <meta charset="utf-8"> <title>Tattoo print</title> <!-- Styles --> <link href="{{ asset('bootstrap/css/bootstrap.min.css') }}" rel="stylesheet"> <link href="{{ asset('css/print.css') }}" rel="stylesheet"> <script src="{{asset('js/jquery-2.1.3.min.js')}}"></script> <script type="text/javascript"> $(document).ready(function(){ //Check if the current URL contains '#' if(document.URL.indexOf("#")==-1){ // Set the URL to whatever it was plus "#". url = document.URL+"#"; location = "#"; //Reload the page location.reload(true); } }); </script> </head> <body id="cell"> <div class="print"> <table cellpadding="0" cellspacing="0" border="0"> <tr> <td width="38px"> <div class="cm">cm</div> </td> <td height="38px"> <div class="sizes_h"> @for($i=0; $i<=$w2; $i++) <span class="si_h">{{$i}}</span> @endfor </div> </td> </tr> <tr> <td width="38px"> <div class="sizes_w"> @for($i=0; $i<=$h2; $i++) <span class="si_w">{{$i}}</span> @endfor </div> </td> <td valign="top" align="left"> <img id="pic" class="uploader" src="{{$obj->picture}}" width="{{$w2*38}}" height="{{$h2*38}}"/> </td> </tr> </table> </div> </body> </html>