Ticket #2339 (closed defect: invalid)
replace admin from catwalk to rum
| Reported by: | lszyba1 | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | TurboGears | Version: | trunk |
| Severity: | major | Keywords: | |
| Cc: |
Description
- Was the issue with changing user password solved in catwalk?
- When viewing the content of one of the tables the content is not displayed properly. I have 50 records in the table but only first 8 are displayed and rest is cut off.
Can we fix the second one? If the first one is still not fixed can we go with rum as that is working there for quite some time?
Thanks, Lucas
Attachments
Change History
Changed 3 years ago by lszyba1
-
attachment
catwalk_to_rum.diff
added
Patch to replace catwalk with rum
Note: See
TracTickets for help on using
tickets.
Next problem. The tables have incorrect primary key. When creating a table
class Enum(DeclarativeBase): __tablename__ = 'enum' #{ Columns type = Column(Unicode(), nullable=False,primary_key=True) name = Column(Unicode(), nullable=False,primary_key=True) value = Column(Unicode(), nullable=True)When adding a first record field type is "blacked out" and you cannot enter a value. Rum admin does it properly.