Django 1.5 html问题,href未出现

Django 1.5 html问题,href未出现,html,django,Html,Django,嗨,我在Django 1.5上遇到了一些问题。我正在编写一个简单的模板,但无法在我的页面中显示链接(href标记)。 这是我的密码 {% extends "forum_base.html" %} {% load uni_form_tags %} {% block title %}Lista dei Forums{% endblock %} {% block content %} <h3><a href="{% url "image_index" %}"></a&g

嗨,我在Django 1.5上遇到了一些问题。我正在编写一个简单的模板,但无法在我的页面中显示链接(href标记)。 这是我的密码

{% extends "forum_base.html" %}
{% load uni_form_tags %}

{% block title %}Lista dei Forums{% endblock %}
{% block content %}
<h3><a href="{% url "image_index" %}"></a></h3> >> <h3><a href="{% url "forum_index" %}"></a></h3>
{% for forum in forums %}
<h3><a href="{% url "forum_thread_list" forum_id=forum.pk %}">{{ forum.title }}</a></h3>
{% endfor %}
{% endblock %}
{%extensed“forum_base.html”%}
{%load uni_form_tags%}
{%block title%}Lista dei论坛{%endblock%}
{%block content%}
>> 
{论坛%%中的论坛%}
{%endfor%}
{%endblock%}
我无法显示此行:

    <h3><a href="{% url "image_index" %}"></a></h3> >> <h3><a href="{% url "forum_index" %}"></a></h3>
>
有人能解释一下错误在哪里吗?

这是一个html问题

>>