Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
CIRCLE
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
94
Merge Requests
10
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
A prog2-höz tartozó friss repo anyagok itt elérhetőek:
https://git.iit.bme.hu/
Commit
3c30d07d
authored
Jul 22, 2014
by
Őry Máté
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
common: handle missing params for HumanReadableObject.get_*_text()
parent
6474d40a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
circle/common/models.py
+12
-2
No files found.
circle/common/models.py
View file @
3c30d07d
...
@@ -375,12 +375,22 @@ class HumanReadableObject(object):
...
@@ -375,12 +375,22 @@ class HumanReadableObject(object):
def
get_admin_text
(
self
):
def
get_admin_text
(
self
):
if
self
.
admin_text_template
==
""
:
if
self
.
admin_text_template
==
""
:
return
""
return
""
return
_
(
self
.
admin_text_template
)
%
self
.
params
try
:
return
_
(
self
.
admin_text_template
)
%
self
.
params
except
KeyError
:
logger
.
exception
(
"Can't render admin_text_template '
%
s'
%% %
s"
,
self
.
admin_text_template
,
unicode
(
self
.
params
))
return
self
.
get_user_text
()
def
get_user_text
(
self
):
def
get_user_text
(
self
):
if
self
.
user_text_template
==
""
:
if
self
.
user_text_template
==
""
:
return
""
return
""
return
_
(
self
.
user_text_template
)
%
self
.
params
try
:
return
_
(
self
.
user_text_template
)
%
self
.
params
except
KeyError
:
logger
.
exception
(
"Can't render user_text_template '
%
s'
%% %
s"
,
self
.
user_text_template
,
unicode
(
self
.
params
))
return
self
.
user_text_template
def
to_dict
(
self
):
def
to_dict
(
self
):
return
{
"user_text_template"
:
self
.
user_text_template
,
return
{
"user_text_template"
:
self
.
user_text_template
,
...
...
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