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
edx
django-wiki
Commits
8c453359
Commit
8c453359
authored
May 07, 2014
by
benjaoming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update article.py
parent
4783abda
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletions
+9
-1
wiki/views/article.py
+9
-1
No files found.
wiki/views/article.py
View file @
8c453359
...
...
@@ -60,7 +60,15 @@ class Create(FormView, ArticleMixin):
initial
[
'slug'
]
=
self
.
request
.
GET
.
get
(
'slug'
,
None
)
kwargs
[
'initial'
]
=
initial
form
=
form_class
(
self
.
request
,
self
.
urlpath
,
**
kwargs
)
form
.
fields
[
'slug'
]
.
widget
=
forms
.
TextInputPrepend
(
prepend
=
'/'
+
self
.
urlpath
.
path
,
attrs
=
{
'pattern'
:
'[^-A-Z]+'
,
'title'
:
'Please only use lowercase alphanumeric characters and underscores'
})
form
.
fields
[
'slug'
]
.
widget
=
forms
.
TextInputPrepend
(
prepend
=
'/'
+
self
.
urlpath
.
path
,
attrs
=
{
# Make patterns force lowercase if we are case insensitive to bless the user with a
# bit of strictness, anyways
'pattern'
:
'[a-z0-9_]+'
if
not
settings
.
URL_CASE_SENSITIVE
else
'[a-zA-Z0-9_]+'
,
'title'
:
'Lowercase letters, numbers, and underscores'
if
not
settings
.
URL_CASE_SENSITIVE
else
'Letters, numbers, and underscores'
,
}
)
return
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