Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialBernardo Augusto García Loaiza
Courses Plus Student 792 PointsMy challenge tasks does not works? [SOLVED]
Hi, I am perform this challenge tasks, and when I arrive to the task 2, I try answer these task, and the message that I get is:
"Oops! It looks like Task 1 is no longer passing."
Constantly I get this message in some tasks challenges in other chapters or topics ..
What mean this? Best Regards
from django.conf.urls import url, include
from . import views
urlpatterns = [
url(r'^', include('django.contrib.auth.urls')),
]
{% extends "layout.html" %}
{% load bootstrap3 %}
{% block title_tag %}Login | {{ block.super }}{% endblock %}
{% block body_content %}
<div class="container">
<h1>Log into your account</h1>
<form method="POST">
{% csrf_token %}
{% bootstrap_form form %}
<input type="submit" value="Login" class="btn btn-default">
</form>
</div>
{% endblock %}
Chris Freeman
Treehouse Moderator 68,441 PointsMarked as Solved
Bernardo Augusto García Loaiza
Courses Plus Student 792 PointsBernardo Augusto García Loaiza
Courses Plus Student 792 PointsI already fixed. Django check the task without use bootstrap3 application in the form The code section is: