m.view.html.php 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. /**
  3. * The company view mobile view file of company module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2016 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
  6. * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
  7. * @author Fei Chen <chenfei@cnezsoft.com>
  8. * @package company
  9. * @version $Id: index.html.php 3830 2016-05-18 09:34:17Z liugang $
  10. * @link http://www.zentao.net
  11. */
  12. ?>
  13. <?php include "../../common/view/m.header.html.php";?>
  14. <div id='page' class='list-with-actions'>
  15. <div class='section no-margin'>
  16. <div class='heading gray'>
  17. <div class='title'> <strong><?php echo $lang->company->view;?></strong></div>
  18. </div>
  19. <div class='box'>
  20. <table class='table bordered table-detail'>
  21. <tr>
  22. <th class='w-80px'><?php echo $lang->company->name;?></th>
  23. <td><?php echo $company->name;?></td>
  24. </tr>
  25. <tr>
  26. <th><?php echo $lang->company->phone;?></th>
  27. <td><?php echo $company->phone;?></td>
  28. </tr>
  29. <tr>
  30. <th><?php echo $lang->company->fax;?></th>
  31. <td><?php echo $company->fax;?></td>
  32. </tr>
  33. <tr>
  34. <th><?php echo $lang->company->address;?></th>
  35. <td><?php echo $company->address; ?></td>
  36. </tr>
  37. <tr>
  38. <th><?php echo $lang->company->zipcode;?></th>
  39. <td><?php echo $company->zipcode;?></td>
  40. </tr>
  41. <tr>
  42. <th><?php echo $lang->company->website;?></th>
  43. <td><?php echo $company->website;?></td>
  44. </tr>
  45. <tr>
  46. <th><?php echo $lang->company->backyard;?></th>
  47. <td><?php echo $company->backyard;?></td>
  48. </tr>
  49. <tr>
  50. <th><?php echo $lang->company->guest;?></th>
  51. <td><?php echo $lang->company->guestOptions[$company->guest];?></td>
  52. </tr>
  53. </table>
  54. </div>
  55. </form>
  56. </div>
  57. <?php include "../../common/view/m.footer.html.php"; ?>