Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
AE UTBM
Sith
Commits
9847186b
Commit
9847186b
authored
Dec 08, 2016
by
Skia
🤘
Browse files
Small fixes
parent
d2c580dd
Pipeline
#480
passed with stage
in 2 minutes and 29 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
eboutic/models.py
View file @
9847186b
...
...
@@ -38,7 +38,7 @@ class Basket(models.Model):
return
total
def
__str__
(
self
):
return
"
B
asket (%d items)"
%
self
.
items
.
all
().
count
()
return
"
%s's b
asket (%d items)"
%
(
self
.
user
,
self
.
items
.
all
().
count
()
)
class
Invoice
(
models
.
Model
):
"""
...
...
sas/templates/sas/album.jinja
View file @
9847186b
...
...
@@ -152,7 +152,7 @@ $("form").submit(function (event) {
errorlist
.
appendChild
(
errors
.
shift
());
progress
.
value
=
++
completeCount
/
imagesCount
;
if
(
progress
.
value
===
1
&&
errorlist
.
children
.
length
===
0
)
document
.
location
.
reload
()
document
.
location
.
reload
(
true
)
}
});
</script>
...
...
Write
Preview
Supports
Markdown
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