-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
enable bilingual field in creating new vocabulary and tags #2
Conversation
@@ -41,13 +41,27 @@ def new(): | |||
if request.method == 'POST': | |||
params = clean_dict( | |||
dict_fns.unflatten(tuplize_dict(parse_params(request.form)))) | |||
log.debug("params") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove extra debug log
@@ -62,6 +76,8 @@ def read(id): | |||
|
|||
try: | |||
vocab = get_action("vocabulary_show")(context, {'id': id}) | |||
log.debug("vocabulary_show") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same
@@ -0,0 +1,110 @@ | |||
{% block header_wrapper %} {% block header_account %} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@steveoni I didn't understand what changed on the header template. Could you explain what change you made here? I think we should just extend the template instead of overriding the whole template.
{% ckan_extends %}
LGTM |
this pr implement #1