Skip to content

Instantly share code, notes, and snippets.

@randm-ch
Created February 26, 2015 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save randm-ch/a9f4d3bffe42bcf50dc4 to your computer and use it in GitHub Desktop.
Save randm-ch/a9f4d3bffe42bcf50dc4 to your computer and use it in GitHub Desktop.
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
<h3>Verfügbare Datenquellen</h3>
</div>
<div class="modal-body">
<f:if condition="{value}">
<f:then>
<p>
Als Datenquelle ist jener Datentyp auszuwählen, auf welchem der Report basieren soll. Es können mehrere Datenquellen ausgewählt werden.
Dies ist allerdings nur zu empfehlen, wenn eine benötigte Verknüpfung anders nicht hergestellt werden kann.
</p>
<ul>
<f:for each="{value}" as="tag">
<li>{tag.output}</li>
</f:for>
</ul>
</f:then>
<f:else>
<div class="alert alert-danger">
<strong>Achtung!</strong> Es wurden keine Datenquellen gefunden. Kontaktieren Sie Ihren Systemadministrator!
</div>
</f:else>
</f:if>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Schliessen</button>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment