Advertisement
Guest User

Untitled

a guest
Mar 26th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.07 KB | None | 0 0
  1. <div class="container">
  2.         <div class="row">
  3.                 <div class="col-xs-5">
  4.                     <table style="font:20px verdana" text-align=center border="1" CELLPADDING=10 CELLSPACING=0 align="center" width="600" bgcolor="#ffcc00">
  5.                       <style>
  6.                       table {
  7.                           font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
  8.                           font-size: 14px;
  9.                           border-collapse: collapse;
  10.                           text-align: center;
  11.                         }
  12.                         th, td:first-child {
  13.                           background: #AFCDE7;
  14.                           color: white;
  15.                           padding: 10px 20px;
  16.                         }
  17.                         th, td {
  18.                           border-style: solid;
  19.                           border-width: 0 1px 1px 0;
  20.                           border-color: white;
  21.                         }
  22.                         td {
  23.                           background: #D8E6F3;
  24.                         }
  25.                         th:first-child, td:first-child {
  26.                           text-align: left;
  27.                         }
  28.                       </style>
  29.                         <thead>
  30.                         <td class="property-name"></td>
  31.                         <td class="property-name">ФИО</td>
  32.                         <td>Дата рождения</td>
  33.                         <td>Дата закрытия</td>
  34.                         </thead>
  35.                         {{ range $key, $value := . }}
  36.                             <td class="property-name">{{$value.Id}}</td>
  37.                             <td class="property-name">{{$value.Fam}} {{$value.Name}} {{$value.Lastname}} </td>
  38.                             <td>{{$value.Datebirth}}</td>
  39.                             <td>{{$value.DateLastEdit}}</td>
  40.                         <tr>
  41.                             {{end}}
  42.                         </tr>
  43.                     </table>
  44.  
  45.                 </div>
  46.         </div>
  47.     </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement