slyapustin / django-classified

Django Classified
https://github.com/slyapustin/django-classified-demo
MIT License
171 stars 77 forks source link

urls not working in the template : item_detail.html #18

Closed newnovis closed 7 years ago

newnovis commented 7 years ago

When the item detail page is displayed, the _base.html url links are not active except the home button. Do you have any idea about this issue?

newnovis commented 7 years ago

sorry it was just because I have used style = padding:55%. in the html below:

   <div class="row">
        <div class="col-md-12">
            <hr />
            {% if DCF_LOGIN_TO_CONTACT and not user.is_authenticated %}
                {% trans "Please" %} <a href='{% url 'login' %}'>{% trans "login" %}</a> {%  trans "to see contact information." %}
            {% else %}
                <u1>{% trans "Phone" %}: {{ object.phone }}<u1>
                <u1 style="">Publiée par : <a href='{{ item.user.get_absolute_url }}' title="{{ item.user.get_username }}">{{ item.user }}</a>, le : {{ object.posted|date:"$
            {% endif %}
        </div>
    </div>

Thank you for not considering it as an issue.