Changeset 613 in tmcsimulator for branches/LCSv1/views/default


Ignore:
Timestamp:
04/02/2020 12:17:33 PM (6 years ago)
Author:
liquan
Message:

Center tables and modified pages title for lists.html and results.html to match the other pages styling.

Location:
branches/LCSv1/views/default
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/LCSv1/views/default/list.html

    r593 r613  
    11{{extend 'layout.html'}} 
    2 <h1>List of Current Log Entries</h1> 
    3 <p> 
     2<div id="pageTitle" class="header"> 
     3    List of Current Log Entries 
     4</div> 
     5<p style="text-align: center;"> 
    46    This page is just an exploration.  It won't appear in the final application.  We won't build our pages in this manner, either.  
    57</p> 
    6     <table border="1" cellpadding="5"> 
     8    <table border="1" cellpadding="5" style="margin: 0% 20% 0% 20%;"> 
    79        <tr> 
    810        <th></th> 
  • branches/LCSv1/views/default/results.html

    r595 r613  
    4141} 
    4242</script> 
    43 <h2> 
    44     Search Results 
    45 </h2> 
    46 <hr> 
    47 <!-- NB:  Python code within comment is STILL executed --> 
    48 Query: {{=msg}} 
    49 <br> 
    50 Number of records found: {{=count}} 
    51 <HR> 
    52 <table border="1" cellpadding="5"> 
    53 {{=table}} 
    54 {{for item in multiform:}} 
    55 {{=item}} 
    56 {{pass}} 
    57 </table> 
    58 <HR> 
     43<div style="margin: 0% 15% 0% 15%;"> 
     44    <div id="pageTitle" class="header"> Search Results </div> 
     45    <hr> 
     46    <!-- NB:  Python code within comment is STILL executed --> 
     47    Query: {{=msg}} 
     48    <br> 
     49    Number of records found: {{=count}} 
     50    <hr> 
     51    <table border="1" cellpadding="5"> 
     52        {{=table}} 
     53        {{for item in multiform:}} 
     54        {{=item}} 
     55        {{pass}} 
     56    </table> 
     57    <hr> 
     58</div> 
Note: See TracChangeset for help on using the changeset viewer.