You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
{% macro panel(style, title) %}
|
|
|
|
<div class="panel panel-{{ style }}">
|
|
|
|
<div class="panel-heading">
|
|
|
|
<h3 class="panel-title">{{ title }}</h3>
|
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
|
|
{{ caller() }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endmacro %}
|
|
|
|
|
|
|
|
{% macro radio(name, value, emph, text, current) %}
|
|
|
|
<div class="radio">
|
|
|
|
<label>
|
|
|
|
<input type="radio" name="{{ name }}" value="{{ value }}"{% if current == value %} checked="checked"{% endif %} required="required">
|
|
|
|
{% if emph %}
|
|
|
|
<strong>{{ emph }}</strong>,
|
|
|
|
{% endif %}
|
|
|
|
{{ text }}
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
{% endmacro %}
|