Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
scheduling-system
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SMASCH
scheduling-system
Commits
3817e969
Commit
3817e969
authored
8 years ago
by
Jacek Lebioda
Browse files
Options
Downloads
Patches
Plain Diff
Simple API for autocomplete
parent
161aee79
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
smash/smash/urls.py
+3
-1
3 additions, 1 deletion
smash/smash/urls.py
todos.txt
+2
-0
2 additions, 0 deletions
todos.txt
with
5 additions
and
1 deletion
smash/smash/urls.py
+
3
−
1
View file @
3817e969
...
@@ -20,8 +20,10 @@ from django.conf import settings
...
@@ -20,8 +20,10 @@ from django.conf import settings
from
django.conf.urls.static
import
static
from
django.conf.urls.static
import
static
import
web.urls
import
web.urls
import
web.api_urls
urlpatterns
=
[
urlpatterns
=
[
url
(
r
'
^admin/
'
,
admin
.
site
.
urls
),
url
(
r
'
^admin/
'
,
admin
.
site
.
urls
),
url
(
r
''
,
include
(
web
.
urls
))
url
(
r
''
,
include
(
web
.
urls
)),
url
(
r
'
^api/
'
,
include
(
web
.
api_urls
))
]
+
static
(
settings
.
MEDIA_URL
,
document_root
=
settings
.
MEDIA_ROOT
)
]
+
static
(
settings
.
MEDIA_URL
,
document_root
=
settings
.
MEDIA_ROOT
)
This diff is collapsed.
Click to expand it.
todos.txt
+
2
−
0
View file @
3817e969
...
@@ -5,6 +5,8 @@
...
@@ -5,6 +5,8 @@
- implement `on leave` button
- implement `on leave` button
- what about possible sunday in availabilities?
- what about possible sunday in availabilities?
- make some names sound/look more pythonic
- make some names sound/look more pythonic
- in beta remember to disable Guest Access
- in beta remember to forbid not-logged users to browse the API
** Visual
** Visual
- None
- None
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment