SciPost Code Repository
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SciPost
Manage
Activity
Members
Labels
Plan
Issues
118
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
SciPost
SciPost
Commits
5d7860ac
Commit
5d7860ac
authored
9 years ago
by
Jean-Sébastien Caux
Browse files
Options
Downloads
Patches
Plain Diff
Remove import alls from commentaries
parent
d6ea3a92
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
commentaries/admin.py
+1
-1
1 addition, 1 deletion
commentaries/admin.py
commentaries/forms.py
+2
-1
2 additions, 1 deletion
commentaries/forms.py
commentaries/models.py
+5
-3
5 additions, 3 deletions
commentaries/models.py
commentaries/views.py
+5
-5
5 additions, 5 deletions
commentaries/views.py
with
13 additions
and
10 deletions
commentaries/admin.py
+
1
−
1
View file @
5d7860ac
from
django.contrib
import
admin
from
django.contrib
import
admin
from
commentaries.models
import
*
from
commentaries.models
import
Commentary
class
CommentaryAdmin
(
admin
.
ModelAdmin
):
class
CommentaryAdmin
(
admin
.
ModelAdmin
):
...
...
This diff is collapsed.
Click to expand it.
commentaries/forms.py
+
2
−
1
View file @
5d7860ac
from
django
import
forms
from
django
import
forms
from
.models
import
*
from
.models
import
Commentary
COMMENTARY_ACTION_CHOICES
=
(
COMMENTARY_ACTION_CHOICES
=
(
(
0
,
'
modify
'
),
(
0
,
'
modify
'
),
...
...
This diff is collapsed.
Click to expand it.
commentaries/models.py
+
5
−
3
View file @
5d7860ac
...
@@ -2,10 +2,12 @@ from django.utils import timezone
...
@@ -2,10 +2,12 @@ from django.utils import timezone
from
django.db
import
models
from
django.db
import
models
from
django.contrib.auth.models
import
User
from
django.contrib.auth.models
import
User
from
.models
import
*
from
journals.models
import
*
from
journals.models
import
SCIPOST_JOURNALS_DOMAINS
,
SCIPOST_JOURNALS_SPECIALIZATIONS
from
scipost.models
import
*
from
scipost.models
import
Contributor
from
scipost.models
import
SCIPOST_DISCIPLINES
COMMENTARY_TYPES
=
(
COMMENTARY_TYPES
=
(
(
'
published
'
,
'
published paper
'
),
(
'
published
'
,
'
published paper
'
),
...
...
This diff is collapsed.
Click to expand it.
commentaries/views.py
+
5
−
5
View file @
5d7860ac
...
@@ -9,16 +9,16 @@ from django.http import HttpResponse, HttpResponseRedirect
...
@@ -9,16 +9,16 @@ from django.http import HttpResponse, HttpResponseRedirect
from
django.views.decorators.csrf
import
csrf_protect
from
django.views.decorators.csrf
import
csrf_protect
from
django.db.models
import
Avg
from
django.db.models
import
Avg
from
.models
import
*
from
.models
import
Commentary
from
.forms
import
*
from
.forms
import
RequestCommentaryForm
,
VetCommentaryForm
,
CommentarySearchForm
from
comments.models
import
Comment
from
comments.models
import
Comment
from
comments.forms
import
CommentForm
from
comments.forms
import
CommentForm
from
scipost.forms
import
TITLE_CHOICES
,
AuthenticationForm
#, OpinionForm
from
scipost.models
import
Contributor
from
scipost.models
import
title_dict
from
scipost.forms
import
AuthenticationForm
title_dict
=
dict
(
TITLE_CHOICES
)
# Convert titles for use in emails
################
################
# Commentaries
# Commentaries
################
################
...
...
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