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
a68bafea
Commit
a68bafea
authored
Jun 26, 2012
by
Frédéric Buclin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 768573: Templates must INCLUDE bug/field.html.tmpl instead of PROCESS'ing it
r=glob a=LpSolit
parent
ba4d5480
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
edit.html.tmpl
template/en/default/bug/edit.html.tmpl
+1
-1
knob.html.tmpl
template/en/default/bug/knob.html.tmpl
+2
-2
show-multiple.html.tmpl
template/en/default/bug/show-multiple.html.tmpl
+1
-1
edit-multiple.html.tmpl
template/en/default/list/edit-multiple.html.tmpl
+2
-2
No files found.
template/en/default/bug/edit.html.tmpl
View file @
a68bafea
...
...
@@ -885,7 +885,7 @@
[% USE Bugzilla %]
[% FOREACH field = Bugzilla.active_custom_fields %]
<tr>
[%
PROCESS
bug/field.html.tmpl value = bug.${field.name}
[%
INCLUDE
bug/field.html.tmpl value = bug.${field.name}
editable = bug.check_can_change_field(field.name, 0, 1)
value_span = 2 %]
</tr>
...
...
template/en/default/bug/knob.html.tmpl
View file @
a68bafea
...
...
@@ -7,7 +7,7 @@
#%]
<div id="status">
[%
PROCESS
bug/field.html.tmpl
[%
INCLUDE
bug/field.html.tmpl
no_tds = 1
field = bug_fields.bug_status
value = bug.bug_status
...
...
@@ -22,7 +22,7 @@
[% END %]
<span id="resolution_settings">
[%
PROCESS
bug/field.html.tmpl
[%
INCLUDE
bug/field.html.tmpl
no_tds = 1
field = bug_fields.resolution
value = bug.resolution
...
...
template/en/default/bug/show-multiple.html.tmpl
View file @
a68bafea
...
...
@@ -176,7 +176,7 @@
[% field_counter = field_counter + 1 %]
[%# Odd-numbered fields get an opening <tr> %]
[% '<tr>' IF field_counter % 2 %]
[%
PROCESS
bug/field.html.tmpl value=bug.${field.name} editable=0 %]
[%
INCLUDE
bug/field.html.tmpl value=bug.${field.name} editable=0 %]
[%# Even-numbered fields get a closing <tr> %]
[% '</tr>' IF !(field_counter % 2) %]
[% IF extra_field_item %]
...
...
template/en/default/list/edit-multiple.html.tmpl
View file @
a68bafea
...
...
@@ -134,7 +134,7 @@
value="[% dontchange FILTER html %]"
size="6">
</td>
[%
PROCESS bug/field.html.tmpl
[%
INCLUDE bug/field.html.tmpl
field = bug_fields.deadline, value = dontchange
editable = 1, allow_dont_change = 1 %]
</tr>
...
...
@@ -269,7 +269,7 @@
[% bug = 0 %]
[% FOREACH field = Bugzilla.active_custom_fields %]
<tr>
[%
PROCESS
bug/field.html.tmpl value = dontchange
[%
INCLUDE
bug/field.html.tmpl value = dontchange
editable = 1
allow_dont_change = 1 %]
</tr>
...
...
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