Skip to content

Instantly share code, notes, and snippets.

@randm-ch
Created February 26, 2015 14:20
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/f346e80578707066ada7 to your computer and use it in GitHub Desktop.
Save randm-ch/f346e80578707066ada7 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 Felder</h3>
</div>
<div class="modal-body">
<f:if condition="{value}">
<f:then>
<p>
Folgendes sind ihre momentanen Auswahlmöglichkeiten. Wenn Sie weitere Datenquellen oder Verknüpfungen hinzufügen eröffnen sich neue Möglichkeiten. Öffnen Sie dann dieses Fenster wieder, um mehr zu erfahren.
</p>
<ul>
<f:for each="{value}" as="tag">
<li>{tag.output}</li>
</f:for>
</ul>
</f:then>
<f:else>
<div class="alert alert-warning">
<strong>Warnung:</strong> Es wurden keine Felder gefunden. Bitte stellen Sie sicher, dass bereits eine Datenquelle ausgewählt ist.
</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