Modify ↓
Opened 16 years ago
Closed 15 years ago
#317 closed defect (fixed)
Cannot remove a build configuration
Reported by: | manu.blot@… | Owned by: | ebray |
---|---|---|---|
Priority: | major | Milestone: | 0.6 |
Component: | Build master | Version: | 0.5.3 |
Keywords: | Cc: | ||
Operating System: | BSD |
Description
When a configuration is selected for deletion, Bitten throws an error message (code 500)
Configuration u'config.name' does not exist
Here is one of the smallest patch ever to fix up this issue:
-
bitten/templates/bitten_admin_configs.html
215 215 <tr py:for="config in configs"> 216 216 <td class="sel"> 217 217 <input type="checkbox" name="sel" 218 value=" config.name" />218 value="$config.name" /> 219 219 </td> 220 220 <td class="name"> 221 221 <a href="$config.href">$config.label</a>
I'm using the branches/experimental/trac-0.11 source code (Genshi templates).
Attachments (0)
Change History (3)
comment:1 Changed 16 years ago by ebray
comment:2 Changed 15 years ago by osimons
- Owner changed from cmlenz to ebray
comment:3 Changed 15 years ago by osimons
- Resolution set to fixed
- Status changed from new to closed
And closing (ebray, you now have permissions to actually close tickets you fix :-).
Note: See
TracTickets for help on using
tickets.
Fixed in r563. Thanks for the report!