Ticket #90 (new defect)
Opened 5 months ago
Read-only view in company.php uses old-style HTML, could be vastly improved
| Reported by: | richcowan | Owned by: | florian |
|---|---|---|---|
| Priority: | major | Milestone: | 0.5 |
| Component: | other | Version: | 0.4 |
| Keywords: | Cc: |
Description
On the pages:
mysite/company.php?id=4 The page would benefit greatly from a compressed view of the company name/address/details info. There is no reason that this info needs to occupy a region that is 500 or more pixels wide by 375 pixels tall.
Due to this problem you have to scroll way down to get to the things you usually want to do (like select a project from the list of projects).
The lines that read: <td class="label">Company: </td> <td class="data"> ASP.MD </td>
Should be replaced by themable code which includes divs based on the field names from the database.
<div id="company_name" class="listingvar">
<p id="c_company" class="label">Company:</td> <p id="c_company_val" class="data">ASP.MD</td>
</div>
Then, the default CSS file which ships with the application could produce a much more friendly layout for this and users could substitute their own CSS to omit fields that are not needed here, etc.
