- ${h.textarea('pullrequest_desc',size=30)}
+ ${h.textarea('pullrequest_desc',size=30, style="height:100px")}
+ ${_('Write a short description on this pull request')}
@@ -145,8 +147,8 @@
var otherrepoChanged = function(){
var sel_box = YUQ('#pull_request_form #other_repo')[0];
var repo_name = sel_box.options[sel_box.selectedIndex].value;
-
- YUD.get('other_repo_desc').innerHTML = other_repos_info[repo_name]['description'];
+ var _tmpl = "${_('Destination repository')}: {0}".format(other_repos_info[repo_name]['description']);
+ YUD.get('other_repo_desc').innerHTML = _tmpl
// replace options of other_ref with the ones for the current other_repo
var other_ref_selector = YUD.get('other_ref');
var new_select = YUD.createElementFromMarkup(other_repos_info[repo_name]['revs']);