Changeset 322

Show
Ignore:
Timestamp:
05/05/10 12:03:39 (3 years ago)
Author:
fabio.montefuscolo
Message:

fix and chage the "open ticket" page

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/clinicaltrials/tickets/templates/tickets/open_ticket.html

    r143 r322  
    33{% block body %} 
    44 
     5<h2>{% trans "Opening Ticket" %} {{ user_name }}</h2> 
    56<form method="post" action="/ticket/open/{{ context }}/{{ type }}/"> 
    6 <table> 
    7     <tr><th colspan="2">{% trans "Opening Ticket" %} {{ user_name }}</th><td>&nbsp;</td></tr> 
    8     <tr><th><label>Context:</label><th><td>{{ context }}</td></tr> 
    9     <tr><th><label>Type:</label><th><td>{{ type }}</td></tr> 
    10 {{open_ticket_form.as_table}} 
    11 </table> 
     7    <table class="table"> 
     8        <col width="15%"/> 
     9        <col width="85%"/> 
    1210 
    13 <input name="submit" type="submit" value="{% trans "Submit" %}"> 
     11        <tr> 
     12            <th>Context:</th> 
     13            <td>{{ context }}</td> 
     14        </tr> 
     15        <tr> 
     16            <th>Type:</th> 
     17            <td>{{ type }}</td> 
     18        </tr> 
     19         
     20        {{open_ticket_form.as_table}} 
     21    </table> 
    1422 
     23    <input name="submit" type="submit" value="{% trans "Submit" %}"> 
    1524</form> 
    1625