Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/05/13 14:09:51 (11 years ago)
Author:
fschoepp
Message:

#1888:

  • Billing Component may now be deactivated by setting the BillingEnabled flag within the OaaS service configuration.
  • Added views for invoices and usage data.
  • Changed appearance of the SaveOrder view.
Location:
branches/OaaS/HeuristicLab.Services.Optimization.Web
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/OaaS/HeuristicLab.Services.Optimization.Web

    • Property svn:ignore
      •  

        old new  
        11bin
        22obj
         3Bin
  • branches/OaaS/HeuristicLab.Services.Optimization.Web/Views/Shared/_Layout.cshtml

    r9582 r9586  
    1 <!DOCTYPE html>
     1@using HeuristicLab.Services.Optimization.Web.Helpers
     2<!DOCTYPE html>
    23<html>
    34<head>
     
    6263        <div id="master-mainmenu">
    6364            <ul id="menu">
    64                 <li>@Html.ActionLink("Home", "Index", "Home")</li>
    65                 <li>@Html.ActionLink("Experiment", "Index", "Experiment")</li>         
    66                 <li>@Html.ActionLink("Orders", "Overview", "Order")</li>     
    67                 <li>@Html.ActionLink("Admin", "Index", "Admin")</li>               
     65                <li>@Html.ActionLink("Home", "Index", "Home")</li>                           
     66                <li>@Html.ActionLink("Experiment", "Index", "Experiment")</li>
     67                <li>@Html.ActionLink("Experiment Administrator", "Index", "Admin")</li>   
     68                @if (BillingComponent.Enabled) {         
     69                <li>@Html.ActionLink("My Orders", "Overview", "Order")</li>     
     70                <li>@Html.ActionLink("My Usages", "Index", "Usage")</li>
     71                <li>@Html.ActionLink("My Invoices", "Index", "Invoice")</li>                               
    6872                <li>@Html.ActionLink("Order Administration", "Index", "OrderAdmin")</li>               
     73                }
    6974                <li>@Html.ActionLink("About", "About", "Home")</li>
    7075            </ul>
Note: See TracChangeset for help on using the changeset viewer.