g214/page/templates/page/detail.html

91 lines
3.0 KiB
HTML

{% extends 'base_layout.html' %}
{% load mytags %}
{% block title %}
{% if page %}
{{ page.title }}
{% else %}
青海G214国道综合信息管理系统
{% endif %}
{% endblock %}
{% block content %}
<div class="container">
<div class="row" style="margin-top: 15px">
<div class="col-md-2">
{% include 'page/unit_sidebar.html' %}
</div>
<div class="col-md-10 p-text" >
<ol class="breadcrumb">
{% include 'page/unit_breadcrumb.html' %}
</ol>
{% if category == '1' %}
{% for page in pages %}
<h3 style="text-align: center">{{ page.title }}</h3>
<div class="clearfix"></div>
<h5 style="text-align: center">
发布时间:{{ page.created|date:'Y年m月d日 h:i' }}
</h5>
<hr>
<p>{{ page.content|safe }}</p>
{% endfor %}
{% elif category == '21' or category == '31' or category == '11' %}
{% include 'page/page_list.html' %}
{% elif category == '41' %}
<table class="table table-bordered" style="text-align: center;">
<thead>
<tr>
<th>序号</th>
<th>姓名</th>
<th>性别</th>
<th>职称</th>
<th>学术委员会职务</th>
<th>专业</th>
<th>工作单位</th>
</tr>
</thead>
<tbody>
{% for m in member %}
<tr>
<td>{{ m.number }}</td>
<td>{% if m.url %}
<a href="{{ m.url }}" target="_blank">{{ m.name }}</a>
{% else %}{{ m.name }}
{% endif %}</td>
<td>{{ m.gender|gender }}</td>
<td>{{ m.title }}</td>
<td>{{ m.duty }}</td>
<td>{{ m.specialty }}</td>
<td>{{ m.unit }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% else %}
<div class="alert alert-info" role="alert">暂无数据</div>
{% endif %}
</div>
</div>
</div>
{% endblock %}
{% block add_css %}
<style type="text/css">
.MsoNormal img {
clear: both;
display: block;
margin: auto;
}
.table th {
text-align: center;
}
</style>
{% endblock %}