在线课程搜索 - 学生管理系统
搜索课程
{% if courses %}
<h2>搜索结果:</h2>
<ul>
{% for course in courses %}
<li><a href="{{ url_for('student.view_course', course_id=course.id) }}">{{ course.name }}</a></li>
{% endfor %}
</ul>
{% else %}
<p>未找到相关课程</p>
{% endif %}
</main>
原文地址: https://www.cveoy.top/t/topic/nZHd 著作权归作者所有。请勿转载和采集!