初始提交:人事共享服务中心钉钉登录功能
This commit is contained in:
24
templates/answer_form.html
Normal file
24
templates/answer_form.html
Normal file
@@ -0,0 +1,24 @@
|
||||
{% extends 'base.html' %}
|
||||
|
||||
{% block title %}回答需求{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<h2>回答需求</h2>
|
||||
<div class="question-preview">
|
||||
<h3>需求内容</h3>
|
||||
<h4 class="demand-title">{{ demand.title }}</h4>
|
||||
<p>{{ demand.content }}</p>
|
||||
<p class="meta">分会: {{ get_branch_name(demand.branch) }} | 联系方式: {{ demand.contact }}</p>
|
||||
</div>
|
||||
<form method="POST" class="form">
|
||||
{{ form.hidden_tag() }}
|
||||
<div class="form-group">
|
||||
{{ form.answer.label }}
|
||||
{{ form.answer(class="form-control", rows=8) }}
|
||||
</div>
|
||||
<div class="form-group">
|
||||
{{ form.submit(class="btn btn-primary") }}
|
||||
<a href="{{ url_for('index') }}" class="btn btn-cancel">取消</a>
|
||||
</div>
|
||||
</form>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user