Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
cd61d357
Commit
cd61d357
authored
Jul 31, 2012
by
Dave Lawrence
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 684171 - add a "(take)" link to the QA Contact field
r/a=LpSolit
parent
f6bafcf4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
19 deletions
+24
-19
field.js
js/field.js
+1
-1
edit.html.tmpl
template/en/default/bug/edit.html.tmpl
+23
-18
No files found.
js/field.js
View file @
cd61d357
...
...
@@ -294,7 +294,7 @@ function checkForChangedFieldValues(e, ContainerInputArray ) {
var
unhide
=
false
;
if
(
el
)
{
if
(
el
.
value
!=
ContainerInputArray
[
3
]
||
(
el
.
value
==
""
&&
el
.
id
!=
"alias"
)
)
{
(
el
.
value
==
""
&&
el
.
id
!=
"alias"
&&
el
.
id
!=
'qa_contact'
)
)
{
unhide
=
true
;
}
else
{
...
...
template/en/default/bug/edit.html.tmpl
View file @
cd61d357
...
...
@@ -421,36 +421,41 @@
</td>
<td>
[% IF bug.check_can_change_field("qa_contact", 0, 1) %]
[% IF bug.qa_contact != "" %]
<div id="bz_qa_contact_edit_container" class="bz_default_hidden">
<div id="bz_qa_contact_edit_container" class="bz_default_hidden">
<span>
<span id="bz_qa_contact_edit_display">
[% INCLUDE global/user.html.tmpl who = bug.qa_contact %]</span>
[% INCLUDE global/user.html.tmpl who = bug.qa_contact %]
(<a href="#" id="bz_qa_contact_edit_action">edit</a>)
[% IF bug.qa_contact.id != user.id %]
(<a title="Change QA contact to yourself"
href="#" id="bz_qa_contact_take_action">take</a>)
[% END %]
</span>
</div>
[% END %]
<div id="bz_qa_contact_input">
[% INCLUDE global/userselect.html.tmpl
id
=> "qa_contact"
name
=> "qa_contact"
value
=> bug.qa_contact.login
size
=> 30
classes => ["bz_userfield"]
emptyok => 1
id
=> "qa_contact"
name
=> "qa_contact"
value
=> bug.qa_contact.login
size
=> 30
classes => ["bz_userfield"]
emptyok => 1
%]
<br>
<input type="checkbox" id="set_default_qa_contact" name="set_default_qa_contact" value="1">
<label for="set_default_qa_contact" id="set_default_qa_contact_label">Reset QA Contact to default</label>
</div>
<script type="text/javascript">
[% IF bug.qa_contact != "" %]
hideEditableField('bz_qa_contact_edit_container',
'bz_qa_contact_input',
'bz_qa_contact_edit_action',
'qa_contact',
'[% bug.qa_contact.login FILTER js %]');
[% END %]
hideEditableField('bz_qa_contact_edit_container',
'bz_qa_contact_input',
'bz_qa_contact_edit_action',
'qa_contact',
'[% bug.qa_contact.login FILTER js %]');
hideEditableField('bz_qa_contact_edit_container',
'bz_qa_contact_input',
'bz_qa_contact_take_action',
'qa_contact',
'[% bug.qa_contact.login FILTER js %]',
'[% user.login FILTER js %]');
initDefaultCheckbox('qa_contact');
</script>
[% ELSE %]
...
...
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