Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-wiki
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
django-wiki
Commits
682a217f
Commit
682a217f
authored
May 05, 2014
by
Jason Williams
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added HTML5 pattern checking of lowercase and underscores
parent
3488ef1d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
+1
-1
wiki/views/article.py
+1
-1
No files found.
wiki/views/article.py
View file @
682a217f
...
@@ -60,7 +60,7 @@ class Create(FormView, ArticleMixin):
...
@@ -60,7 +60,7 @@ class Create(FormView, ArticleMixin):
initial
[
'slug'
]
=
self
.
request
.
GET
.
get
(
'slug'
,
None
)
initial
[
'slug'
]
=
self
.
request
.
GET
.
get
(
'slug'
,
None
)
kwargs
[
'initial'
]
=
initial
kwargs
[
'initial'
]
=
initial
form
=
form_class
(
self
.
request
,
self
.
urlpath
,
**
kwargs
)
form
=
form_class
(
self
.
request
,
self
.
urlpath
,
**
kwargs
)
form
.
fields
[
'slug'
]
.
widget
=
forms
.
TextInputPrepend
(
prepend
=
'/'
+
self
.
urlpath
.
path
)
form
.
fields
[
'slug'
]
.
widget
=
forms
.
TextInputPrepend
(
prepend
=
'/'
+
self
.
urlpath
.
path
,
attrs
=
{
'pattern'
:
'[^-A-Z]+'
,
'title'
:
'Please only use lowercase alphanumeric characters and underscores'
}
)
return
form
return
form
def
form_valid
(
self
,
form
):
def
form_valid
(
self
,
form
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment