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:50:17 +00:00
|
|
|
{% include 'paginator.html' %}
|
2015-01-11 11:27:21 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|