Advertisement
Guest User

Untitled

a guest
Apr 15th, 2014
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.35 KB | None | 0 0
  1.             <div class="tabs_nav">
  2.                 <ul class="nav nav-tabs">
  3.                     <li><a href="#history">История</a></li>
  4.                     <li><a href="#groups">Группы</a></li>
  5.                     <li><a href="#permissions">Права</a></li>
  6.                     <li><a href="#documents">Документы</a></li>
  7.                     <li class="dropdown">
  8.                         <a class="dropdown-toggle" data-toggle="dropdown" href="#contacts">Контакты<b class="caret"></b></a>
  9.                         <ul class="dropdown-menu">
  10.                             <li>
  11.                                 {% if not user.userprofile.position %}
  12.                                     <a href="{% url employee_add_not_position user.id %}">
  13.                                         Добавить контакт
  14.                                     </a>
  15.                                 {% else %}
  16.                                     <a href="{% url employee_add user.id %}">
  17.                                         Добавить контакт
  18.                                     </a>
  19.                                 {% endif %}
  20.                             </li>
  21.                         </ul>
  22.                     </li>
  23.                 </ul>
  24.  
  25.                 <div class="tabs_content">
  26.                     <div id="history">
  27.                         {% load pagination_tags %}
  28.                         {% autopaginate user_history 20 %}
  29.                             <table class="table table-striped table-bordered table-condensed ">
  30.                                 <thead>
  31.                                     <th>#</th>
  32.                                     <th>
  33.                                         ip-адрес
  34.                                     </th>
  35.                                     <th>
  36.                                         Действие
  37.                                     </th>
  38.                                     <th>
  39.                                         Дата
  40.                                     </th>
  41.                                     <th>
  42.                                         Лицевой счет
  43.                                     </th>
  44.                                 </thead>
  45.                                 {% for item in user_history %}
  46.                                     <tr>
  47.                                         <td>
  48.                                             {{ forloop.counter0|add:page_obj.start_index }}
  49.                                         </td>
  50.                                         <td>
  51.                                             {{ item.remote_addr }}
  52.                                         </td>
  53.                                         <td>
  54.                                             {{ item.action_description }}
  55.                                         </td>
  56.                                         <td>
  57.                                             {{ item.dt }}
  58.                                         </td>
  59.                                         <td>
  60.                                             {{ item.pa }}
  61.                                         </td>
  62.                                     </tr>
  63.                                 {% endfor %}
  64.                             </table>
  65.                         {% paginate %}
  66.                     </div>
  67.                </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement