<script type="text/template" data-mvc-template="cheaper-faster-flight-simple-result">
<%if (isCheaper || isFaster) {%>
<div class="<%- cssClass%>">
<i class="flight-badge<%- isCheaper ? ' cheap' : '' %><%- isFaster ? ' fast' : '' %>"></i>
<%if (isCheaper) {%><span class="cheaper-text"><%- t("results.flight.cheapest")%></span><%}%>
<%if (isFaster) {%><span class="faster-text"><%- t("results.flight.faster")%></span><%}%>
<%if (totalHiddenFlights) {%>
<div class="pull-right">
<span class="js-show-results show-other-flighs<%=cssIf(expandFlights, ' hide', '')%>"><%- t("results.flight.hiddenResults", totalHiddenFlights)%> <a class="cursor-pointer"><%- t("results.flight.show.hiddenResults")%></a></span>
<a class="js-hide-results hide-other-flighs cursor-pointer<%=cssIf(expandFlights, '', ' hide')%>"><%- t("results.flight.hide.hiddenResults")%></a>
</div>
<%}%>
</div>
<%}%>
</script>