-
-
Save randm-ch/6d2327a7cf8045ec7709 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="modal-content"> | |
<div class="modal-header"> | |
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> | |
<h3>Verfügbare Verknüpfungen</h3> | |
</div> | |
<div class="modal-body"> | |
<f:if condition="{value}"> | |
<f:then> | |
<p> | |
Folgendes sind ihre momentanen Auswahlmöglichkeiten. Wenn Sie eine dieser Optionen in's Feld, eine neue Datenquelle oder eine neue Verknüpfung eingetragen haben 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 Verknüpfungen 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