* AccountController.cs: Code formatting
* Web.csproj: cleanning * Web.config: Yavsc.Model.Circles in imported namespaces * Circles.aspx: Allow Circle view to handle null model
This commit is contained in:
parent
7fc21f1056
commit
bacd124a78
5 changed files with 20 additions and 4 deletions
|
|
@ -4,11 +4,15 @@
|
|||
<asp:Content ID="headContent" ContentPlaceHolderID="head" runat="server">
|
||||
</asp:Content>
|
||||
<asp:Content ID="MainContentContent" ContentPlaceHolderID="MainContent" runat="server">
|
||||
<% foreach (CircleInfo ci in model) { %>
|
||||
<% if (Model==null) { %>
|
||||
No circle yet
|
||||
<% } else { %>
|
||||
|
||||
<% foreach (CircleInfo ci in Model) { %>
|
||||
<%= ci.Title %>
|
||||
<%= ci.Id %>
|
||||
<br/>
|
||||
<% } %>
|
||||
<% }} %>
|
||||
</asp:Content>
|
||||
<asp:Content ID="MASContentContent" ContentPlaceHolderID="MASContent" runat="server">
|
||||
</asp:Content>
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@
|
|||
<add namespace="Yavsc.Model.WorkFlow" />
|
||||
<add namespace="Yavsc.Model.Google" />
|
||||
<add namespace="Yavsc.Model.FrontOffice" />
|
||||
<add namespace="Yavsc.Model.Circles" />
|
||||
|
||||
</namespaces>
|
||||
</pages>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue