增加阅读笔记
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -7,6 +7,7 @@ env/
|
||||
db.sqlite3
|
||||
*.db
|
||||
*.sqlite
|
||||
*.sqlite3
|
||||
|
||||
# 媒体文件
|
||||
media/
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -12,12 +12,13 @@ class ReadingRecordForm(forms.ModelForm):
|
||||
"""阅读记录表单"""
|
||||
class Meta:
|
||||
model = ReadingRecord
|
||||
fields = ['type', 'title', 'source', 'progress', 'file']
|
||||
fields = ['type', 'title', 'source', 'progress', 'note', 'file']
|
||||
widgets = {
|
||||
'type': forms.Select(attrs={'class': 'form-select'}),
|
||||
'title': forms.TextInput(attrs={'class': 'form-control', 'placeholder': '请输入标题'}),
|
||||
'source': forms.TextInput(attrs={'class': 'form-control', 'placeholder': '请输入来源'}),
|
||||
'progress': forms.TextInput(attrs={'class': 'form-control', 'placeholder': '请输入进度'}),
|
||||
'note': forms.Textarea(attrs={'class': 'form-control', 'rows': 4, 'placeholder': '请输入阅读笔记'}),
|
||||
'file': forms.FileInput(attrs={'class': 'form-control'}),
|
||||
}
|
||||
|
||||
|
||||
18
core/migrations/0003_readingrecord_note.py
Normal file
18
core/migrations/0003_readingrecord_note.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 5.1.4 on 2026-01-05 15:09
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('core', '0002_familytasktype_plantype_priority_readingtype_status_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='readingrecord',
|
||||
name='note',
|
||||
field=models.TextField(blank=True, null=True, verbose_name='阅读笔记'),
|
||||
),
|
||||
]
|
||||
@@ -78,6 +78,7 @@ class ReadingRecord(models.Model):
|
||||
title = models.CharField(max_length=200, verbose_name="标题")
|
||||
source = models.CharField(max_length=200, blank=True, null=True, verbose_name="来源")
|
||||
progress = models.CharField(max_length=100, blank=True, null=True, verbose_name="进度")
|
||||
note = models.TextField(blank=True, null=True, verbose_name="阅读笔记")
|
||||
file = models.FileField(upload_to='reading_files/', blank=True, null=True, verbose_name="上传文件")
|
||||
created_at = models.DateTimeField(auto_now_add=True, verbose_name="创建时间")
|
||||
updated_at = models.DateTimeField(auto_now=True, verbose_name="更新时间")
|
||||
|
||||
@@ -67,7 +67,7 @@
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div class="btn-group-vertical w-100">
|
||||
<a href="{% url 'yesterday_records' %}" class="btn btn-outline-primary mb-2">记录昨日信息</a>
|
||||
<a href="{% url 'yesterday_records' %}" class="btn btn-outline-primary mb-2">追加昨日信息</a>
|
||||
<a href="{% url 'today_plan' %}" class="btn btn-outline-primary mb-2">管理今日计划</a>
|
||||
<a href="{% url 'generate_report' %}" class="btn btn-outline-primary mb-2">查看今日报告</a>
|
||||
<a href="{% url 'send_email' %}" class="btn btn-outline-success">发送今日邮件</a>
|
||||
@@ -100,6 +100,9 @@
|
||||
{% if reading.progress %}
|
||||
<div class="mt-1"><small>进度:{{ reading.progress }}</small></div>
|
||||
{% endif %}
|
||||
{% if reading.note %}
|
||||
<div class="mt-1"><small>笔记:{{ reading.note|truncatechars:100 }}</small></div>
|
||||
{% endif %}
|
||||
{% if reading.file %}
|
||||
<div class="mt-1">
|
||||
<a href="{{ reading.file.url }}" class="file-link" target="_blank"><i class="bi bi-file-earmark"></i> 查看附件</a>
|
||||
|
||||
@@ -25,6 +25,7 @@
|
||||
<th>标题</th>
|
||||
<th>来源</th>
|
||||
<th>进度</th>
|
||||
<th>笔记</th>
|
||||
<th>操作</th>
|
||||
</tr>
|
||||
</thead>
|
||||
@@ -35,6 +36,7 @@
|
||||
<td>{{ reading.title }}</td>
|
||||
<td>{{ reading.source|default:"-" }}</td>
|
||||
<td>{{ reading.progress|default:"-" }}</td>
|
||||
<td>{{ reading.note|truncatechars:50|default:"-" }}</td>
|
||||
<td>
|
||||
{% if reading.file %}
|
||||
<a href="{{ reading.file.url }}" class="btn btn-sm btn-info" title="查看附件" target="_blank">
|
||||
|
||||
Reference in New Issue
Block a user