Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
protokollsystem
proto3
Commits
ab648c82
Commit
ab648c82
authored
Mar 23, 2017
by
Robin Sonnabend
Browse files
Merge branch 'master' of git.fsmpi.rwth-aachen.de:protokollsystem/proto3
parents
82d69e4b
91159f04
Changes
1
Hide whitespace changes
Inline
Side-by-side
server.py
View file @
ab648c82
...
...
@@ -402,7 +402,7 @@ def list_protocols():
protocol_done
=
bool
(
state_open
)
protocols
=
[
protocol
for
protocol
in
protocols
if
protocol
.
is_done
()
==
protocol_done
if
(
protocol
.
is_done
()
or
False
)
==
protocol_done
]
if
shall_search
:
protocols
=
[
...
...
@@ -446,7 +446,7 @@ def list_protocols():
page
=
0
begin_index
=
page
*
page_length
end_index
=
(
page
+
1
)
*
page_length
max_page_length_exp
=
math
.
ceil
(
math
.
log10
(
len
(
protocols
)))
max_page_length_exp
=
math
.
ceil
(
math
.
log10
(
len
(
protocols
)))
if
len
(
protocols
)
>
0
else
1
protocols
=
protocols
[
begin_index
:
end_index
]
protocols_table
=
ProtocolsTable
(
protocols
,
search_results
=
search_results
)
return
render_template
(
"protocols-list.html"
,
protocols
=
protocols
,
protocols_table
=
protocols_table
,
search_form
=
search_form
,
page
=
page
,
page_count
=
page_count
,
page_diff
=
config
.
PAGE_DIFF
,
protocoltype_id
=
protocoltype_id
,
search_term
=
search_term
,
state_open
=
state_open
,
page_length
=
page_length
,
max_page_length_exp
=
max_page_length_exp
)
...
...
@@ -848,7 +848,7 @@ def list_todos():
page
=
0
begin_index
=
page
*
page_length
end_index
=
(
page
+
1
)
*
page_length
max_page_length_exp
=
math
.
ceil
(
math
.
log10
(
len
(
todos
)))
max_page_length_exp
=
math
.
ceil
(
math
.
log10
(
len
(
todos
)))
if
len
(
todos
)
>
0
else
1
todos
=
todos
[
begin_index
:
end_index
]
todos_table
=
TodosTable
(
todos
)
return
render_template
(
"todos-list.html"
,
todos
=
todos
,
todos_table
=
todos_table
,
search_form
=
search_form
,
page
=
page
,
page_count
=
page_count
,
page_diff
=
config
.
PAGE_DIFF
,
protocoltype_id
=
protocoltype_id
,
search_term
=
search_term
,
state_open
=
state_open
,
page_length
=
page_length
,
max_page_length_exp
=
max_page_length_exp
)
...
...
@@ -1008,7 +1008,7 @@ def list_decisions():
page
=
0
begin_index
=
page
*
page_length
end_index
=
(
page
+
1
)
*
page_length
max_page_length_exp
=
math
.
ceil
(
math
.
log10
(
len
(
decisions
)))
max_page_length_exp
=
math
.
ceil
(
math
.
log10
(
len
(
decisions
)))
if
len
(
decisions
)
>
0
else
1
decisions
=
decisions
[
begin_index
:
end_index
]
decisions_table
=
DecisionsTable
(
decisions
)
return
render_template
(
"decisions-list.html"
,
decisions
=
decisions
,
decisions_table
=
decisions_table
,
search_form
=
search_form
,
page
=
page
,
page_count
=
page_count
,
page_diff
=
config
.
PAGE_DIFF
,
protocoltype_id
=
protocoltype_id
,
search_term
=
search_term
,
decisioncategory_id
=
decisioncategory_id
,
page_length
=
page_length
,
max_page_length_exp
=
max_page_length_exp
)
...
...
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