Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98759729
bibholdingpen_utils.html
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Jan 16, 06:18
Size
1 KB
Mime Type
text/html
Expires
Sat, Jan 18, 06:18 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23640213
Attached To
R3600 invenio-infoscience
bibholdingpen_utils.html
View Options
{% macro function_display(fun, task_counter) -%}
{% set comma2 = joiner(",") %}
{% for w in fun %}
{% if w is not iterable %}
{{ comma2() }}
</br>
{% if fun.index(w) == task_counter[-1] %}
<b>
{% endif %}
<a href="#infoModal" data-toggle="modal">{{ w.__title__ }}</a>
<div id="infoModal" class="modal hide fade" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">Function Description</h3>
</div>
<div class="modal-body">
{{ w.func_doc }}
</div>
</div>
{% if w.func_closure is defined %}
{% if w.func_closure is iterable %}
{% set comma = joiner(", ") %}
{% for arg in w.func_closure %}
{{ comma() }}
{{ arg.cell_contents }}
{% endfor %}
{% endif %}
{% endif %}
{% if fun.index(w) == task_counter[-1] %}
</b>
{% endif %}
{% endif %}
{% endfor %}
{%- endmacro %}
Event Timeline
Log In to Comment