2015-01-11 11:27:21 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
|
|
{% include 'nav_cat_bar.html' %}
|
|
|
|
|
|
|
|
<div class="wrapper wrapper-content animated fadeInRight">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-10">
|
|
|
|
<div class="ibox float-e-margins">
|
|
|
|
<div class="ibox-content">
|
|
|
|
<div class="">
|
2015-03-07 09:37:40 +00:00
|
|
|
<a target="_blank" href="/jasset/idc_add" class="btn btn-sm btn-primary "> 添加IDC </a>
|
2015-01-11 11:27:21 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<table class="table table-striped table-bordered table-hover " id="editable" >
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2015-03-07 09:37:40 +00:00
|
|
|
<th class="text-center"><input id="checkall" type="checkbox" class="i-checks" name="checkall" value="checkall" data-editable='false' onclick="check_all('contents_form')"></th>
|
2015-01-19 02:09:16 +00:00
|
|
|
<th class="text-center"> 机房名 </th>
|
2015-02-01 15:00:23 +00:00
|
|
|
<th class="text-center"> 主机数量 </th>
|
2015-01-19 02:09:16 +00:00
|
|
|
<th class="text-center"> 备注 </th>
|
|
|
|
<th class="text-center"> 操作 </th>
|
2015-01-11 11:27:21 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2015-03-07 09:37:40 +00:00
|
|
|
{% for post in contacts.object_list %}
|
2015-01-11 11:27:21 +00:00
|
|
|
<tr class="gradeX">
|
2015-03-07 09:37:40 +00:00
|
|
|
<td class="text-center" name="j_id" value="{{ post.id }}" data-editable='false'><input name="id" value="{{ post.id }}" type="checkbox" class="i-checks"></td>
|
2015-01-19 02:09:16 +00:00
|
|
|
<td class="text-center"> {{ post.name }} </td>
|
2015-02-11 09:53:17 +00:00
|
|
|
<td class="text-center"> <a href="/jasset/idc_detail/?id={{ post.id }}">{{ post.asset_set.count }}</a> </td>
|
2015-01-19 02:09:16 +00:00
|
|
|
<td class="text-center"> {{ post.comment }} </td>
|
|
|
|
<td class="text-center">
|
2015-03-04 10:33:38 +00:00
|
|
|
<a href="/jasset/idc_detail/?id={{ post.id }}" class="iframe btn btn-xs btn-primary">详情</a>
|
2015-01-19 02:09:16 +00:00
|
|
|
<a href="/jasset/idc_del/{{ post.id }}" class="btn btn-xs btn-danger">删除</a>
|
|
|
|
</td>
|
2015-01-11 11:27:21 +00:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2015-03-07 09:37:40 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-6">
|
|
|
|
<input type="button" id="del_button" class="btn btn-danger btn-sm" name="del_button" value="删除" onclick="del('contents_form')" />
|
|
|
|
<input type="button" id="alter_button" class="btn btn-warning btn-sm" name="alter_button" value="修改" onclick="alter('contents_form')" />
|
|
|
|
</div>
|
|
|
|
<div class="col-sm-6">
|
|
|
|
<div class="dataTables_paginate paging_simple_numbers" id="editable_paginate">
|
|
|
|
<ul class="pagination" style="margin-top: 0; float: right">
|
|
|
|
|
|
|
|
{% if contacts.has_previous %}
|
|
|
|
<li class="paginate_button previous" aria-controls="editable" tabindex="0" id="editable_previous">
|
|
|
|
<a href="?page={{ contacts.previous_page_number }}">Previous</a>
|
|
|
|
</li>
|
|
|
|
{% else %}
|
|
|
|
<li class="paginate_button previous disabled" aria-controls="editable" tabindex="0" id="editable_previous">
|
|
|
|
<a href="#">Previous</a>
|
|
|
|
</li>
|
|
|
|
{% endif %}
|
|
|
|
{% ifequal show_first 1 %}
|
|
|
|
<li class="paginate_button" aria-controls="editable" tabindex="0"><a href="?page=1" title="第1页">1...</a></li>
|
|
|
|
{% endifequal %}
|
|
|
|
{% for page in page_range %}
|
|
|
|
{% ifequal current_page page %}
|
|
|
|
<li class="paginate_button active" aria-controls="editable" tabindex="0"><a href="?page={{ page }}" title="第{{ page }}页">{{ page }}</a></li>
|
|
|
|
{% else %}
|
|
|
|
<li class="paginate_button" aria-controls="editable" tabindex="0"><a href="?page={{ page }}" title="第{{ page }}页">{{ page }}</a></li>
|
|
|
|
{% endifequal %}
|
|
|
|
{% endfor %}
|
|
|
|
{% ifequal show_end 1 %}
|
|
|
|
<li class="paginate_button" aria-controls="editable" tabindex="0"><a href="?page={{ p.num_pages }}" title="第{{ page }}页">...{{ p.num_pages }}</a></li>
|
|
|
|
{% endifequal %}
|
|
|
|
{% if contacts.has_next %}
|
|
|
|
<li class="paginate_button next" aria-controls="editable" tabindex="0" id="editable_next">
|
|
|
|
<a href="?page={{ contacts.next_page_number }}">Next</a>
|
|
|
|
</li>
|
|
|
|
{% else %}
|
|
|
|
<li class="paginate_button next disabled" aria-controls="editable" tabindex="0" id="editable_next">
|
|
|
|
<a href="#">Next</a>
|
|
|
|
</li>
|
|
|
|
{% endif %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-01-11 11:27:21 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|