我在Django项目中使用Ajax来实现一些简单的搜索。在我的模板文件夹中,我创建了一个名为“ajax_search.html”的html文件,在那里我写了我希望如何在页面上显示我的对象。现在它看起来像这样:
{% if puzzles.count > 0 %}
{% for puzzle in puzzles %}
<a href="{% url 'puzzle' puzzleID=puzzle.id %}">
{{puzzle.title}}
</a>
<br>
{% endfor %}
{% elif search_len < 3 %}
{% else %}
No puzzles match the search
{% endif %}
这很好用,但我想把它设计得更漂亮。有什么方法可以将一些CSS导入到这个模板中吗?
谢谢!