Commit fb779863 authored by Rosanny Sihombing's avatar Rosanny Sihombing
Browse files

add no-mailing-list condition

parent 71fc7a71
...@@ -20,21 +20,24 @@ html(lang="de") ...@@ -20,21 +20,24 @@ html(lang="de")
div(class="col-md-12 margin_bottom_30") div(class="col-md-12 margin_bottom_30")
h2(class="text-center color_708090") <strong>Aktive Mailinglisten</strong> h2(class="text-center color_708090") <strong>Aktive Mailinglisten</strong>
div(class="table-responsive table-borderless") div(class="table-responsive table-borderless")
table(class="table table-striped table-bordered table-hover") if !mailinglists
thead() p There is no active mailing list at the moment
tr() else
th Name table(class="table table-striped table-bordered table-hover")
th Zum Abonnement der Mailingliste thead()
th Zum zugehörigen Projekt tr()
th Keywords th Name
tbody() th Zum Abonnement der Mailingliste
for item in mailinglists th Zum zugehörigen Projekt
if item.projectstatus == '1' th Keywords
tr tbody()
td #{item.name} for item in mailinglists
td <a href="#{item.src}">#{item.src}</a> if item.projectstatus == '1'
td <a href='projectoverview?projectID=#{item.id}'>#{item.project_title}</a> tr
td #{item.keywords} td #{item.name}
td <a href="#{item.src}">#{item.src}</a>
td <a href='projectoverview?projectID=#{item.id}'>#{item.project_title}</a>
td #{item.keywords}
div(id="aboText" class="mailingList_aboText") div(id="aboText" class="mailingList_aboText")
div(class="container") div(class="container")
div(class="row m_bottom_0 p_top_20 p_bottom_20") div(class="row m_bottom_0 p_top_20 p_bottom_20")
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment