You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.9 KiB

{% extends 'base.html' %}
{% block title %}发布帖子{% endblock %}
/* 发布帖子使用的 ajax请求方式 借助的jquery文件 */
{% block head %}
<script src="{% static 'jquery/jquery-3.7.1.min.js' %}"></script>
<link rel="stylesheet" href=" {% static 'wangeditor/style.css' %}">
<script src=" {% static 'wangeditor/index.js' %}"></script>
<script src=" {% static 'js/pub_blog.js' %}"></script>
<style>
#editorwrapper {
border: 1px solid #ccc;
z-index: 100; /* 按需定义 */
}
#toolbar-container {
border-bottom: 1px solid #ccc;
}
#editor-container {
height: 400px;
}
</style>
{% endblock %}
{% block main %}
<h1>发布帖子</h1>
<div class="mt-3">
<form action="" method="POST">
{% csrf_token %}
<div class="mb-3">
<label class="form-label">标题</label>
<input type="text" name="title" class="form-control">
</div>
<div class="mb-3">
<label class="form-label">分类</label>
<select name="category" class="form-select" id="category-select">
{% for category in categories %}
<option value="{{ category.id }}">{{ category.name }}</option>
{% endfor %}
</select>
</div>
<div class="mb-3">
<label class="form-label">内容</label>
<div id="editor—wrapper">
<div id="toolbar-container"><!-- 工具栏 --></div>
<div id="editor-container"><!-- 编辑器 --></div>
</div>
</div>
<div class="mb-3 text-end">
<button class="btn btn-primary" id="submit-btn">发布</button>
</div>
</form>
</div>
{% endblock %}