-
Notifications
You must be signed in to change notification settings - Fork 16
More frontend fixes #62
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
Changes from 29 commits
136e807
1a90957
8dd5060
92c3c06
cfc961b
e664637
a627455
6475a35
5ff906d
ce256fb
c4ce0be
7a7e846
69415f3
0b3c352
86862e4
1582127
6e07e9d
e6ec7d0
b3157ca
be206c5
449f379
93bbfcb
f84d6e3
81c9ca7
1580bae
ca54915
aeb3e95
6df08a9
191fbf0
c509c8c
b972a19
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| {% extends "base.html" %} | ||
|
|
||
| {% block content %} | ||
|
|
||
| <h2>Log in</h2> | ||
| <form method="post"> | ||
| {% csrf_token %} | ||
| {{ form }} | ||
| <button type="submit">Log In</button> | ||
| </form> | ||
dwilding marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| {% endblock %} | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,6 +4,7 @@ | |
| urlpatterns = [ | ||
| path("admin/doc/", include("django.contrib.admindocs.urls")), | ||
| path("admin/", admin.site.urls), | ||
| path("accounts/", include("django.contrib.auth.urls")), | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What does this do? I tried opening http://localhost:8000/accounts but I got a page not found error - so I must be misunderstanding something.
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I did some research into this. I understand the purpose now. It's so that we can use user authorisation URLs that don't need to go via the admin interface. This makes sense, now that we support live editing on the project pages. |
||
| path("__reload__/", include("django_browser_reload.urls")), | ||
| path("", include("projects.urls")), | ||
| ] | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just pushed a commit to add these to
dashboard_rock_patch/dashboard/settings.pytoo.