Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error during template rendering in base.html #1

Open
Kunal-Singhal opened this issue Oct 1, 2017 · 2 comments
Open

Error during template rendering in base.html #1

Kunal-Singhal opened this issue Oct 1, 2017 · 2 comments

Comments

@Kunal-Singhal
Copy link
Contributor

<title>Star Social</title> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
Star Social
    <ul class='nav navbar-nav navbar-right'>
      {% if user.is_authenticated %}
        <li><a href="#">Post</a></li>
        <li><a href="#">Groups</a></li>
        <li><a href="#">Create Group</a></li>
        <li><a href="{% url 'accounts:logout' %}">Log Out</a></li>
      {% else %}
        <li><a href="#">Groups</a></li>
        <li><a href="{% url 'accounts:login'%}">Log In</a></li>
        <li><a href="#% url 'accounts:signup'%">Sign Up</a></li>
      {% endif%}
    </ul>
  </div>

</nav>
<div class="container mycontent">

{% block content %}

{% endblock %}

</div>
prabhat47 added a commit that referenced this issue Oct 1, 2017
Update base.html to fix Issue #1
@TheCthulhuKid
Copy link

Looks like a couple of missing brackets. I've submitted a pull request.

@heba1108
Copy link
Contributor

heba1108 commented Oct 2, 2017

@gileadslostson I've already submitted a pull request to close this issue. Refer to #2 for the solution to problem

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants