Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/24/16 17:19:13 (8 years ago)
Author:
jlodewyc
Message:

#2582 Last fixes Job Manager

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Views/Job/OpenFilePartials/_AlgorithmSmall.cshtml

    r13714 r13733  
    1313       href="#collapseExample@(randomal)"
    1414       aria-expanded="false"
    15        aria-controls="collapseExample@(randomal)">
     15       aria-controls="collapseExample@(randomal)"
     16       style="margin:10px; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
     17                            text-shadow:2px 2px black;">
    1618        @Model.algo.Name
    1719    </a>
    18    
     20
    1921</p>
    20 <div class="collapse" id="collapseExample@(randomal)" style="margin-left:10px;margin-right:10px;margin-top:-10px">
     22<div class="collapse"
     23     id="collapseExample@(randomal)"
     24     style="margin-left:10px;margin-right:10px;margin-top:-10px">
     25
    2126    <img src="~/img/accoladealg.png" style="width:100%;" />
    22     <div class="panel panel-primary" style="border-width:2px!important;
    23 box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    24 text-shadow:none">
     27
     28    <div class="panel panel-primary"
     29         style="border-width:2px!important;
     30        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
     31        text-shadow:none">
    2532        <div class="panel-heading panel-primary text-center">
    2633            <p>@Model.algo.Description</p>
    2734
    28             <div class="btn-group">
     35            <div class="btn-group"
     36                 style="text-shadow:none">
    2937                <button type="button"
    3038                        id="prior@(randomal)"
     
    4250            </div>
    4351        </div>
    44         <table class="table table-responsive card-block" style="table-layout:fixed;overflow-wrap:break-word">
     52        <h4>Algorithm parameters</h4>
     53        <table class="table table-condensed"
     54               style="table-layout:fixed;overflow-wrap:break-word">
     55            <thead>
     56                <tr>
     57                    <th>Parameter</th>
     58                    <th>Value</th>
     59                </tr>
     60            </thead>
     61            <tbody>
     62                @foreach (var par in Model.algo.Parameters.OrderBy(x => x.Name))
     63                {
     64                    <tr>
     65                        <td>@par.Name</td>
     66
     67                        <td>@par.ActualValue</td>
     68                    </tr>
     69
     70                }
     71            </tbody>
     72        </table>
     73        <hr style="border-color:gray" />
     74        <h4>Problem parameters</h4>
     75        <table class="table table-responsive card-block"
     76               style="table-layout:fixed;overflow-wrap:break-word">
    4577            <thead>
    4678                <tr>
     
    6193            </tbody>
    6294        </table>
    63         <table class="table table-condensed" style="table-layout:fixed;overflow-wrap:break-word">
    64             <thead>
    65                 <tr>
    66                     <th>Parameter</th>
    67                     <th>Value</th>
    68                 </tr>
    69             </thead>
    70             <tbody>
    71                 @foreach (var par in Model.algo.Parameters.OrderBy(x => x.Name))
    72                 {
    73                     <tr>
    74                         <td>@par.Name</td>
    7595
    76                         <td>@par.ActualValue</td>
    77                     </tr>
    7896
    79                 }
    80             </tbody>
    81         </table>
    8297    </div>
    8398</div>
Note: See TracChangeset for help on using the changeset viewer.