ae31189b32
svn: r20989
52 lines
1.1 KiB
HTML
52 lines
1.1 KiB
HTML
{% extends "view_page_detail.html" %}
|
|
{% load my_tags %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="content" id="IndividualDetail">
|
|
|
|
{% include "detail_breadcrumb.html" %}
|
|
|
|
<div id="summaryarea">
|
|
|
|
<form name="RunForm" action="/report/{{report.handle}}/run">
|
|
<table class="infolist" style="width:90%;">
|
|
<tr>
|
|
<td class="ColumnAttribute">Name:</td>
|
|
<td class="ColumnValue" id="data" colspan="5">{{report.name}} </td>
|
|
</tr>
|
|
<tr>
|
|
<td class="ColumnAttribute">Type:</td>
|
|
<td class="ColumnValue" id="data">{{report.report_type}}</td>
|
|
</tr>
|
|
<td class="ColumnAttribute">Options:</td>
|
|
<td class="ColumnValue" id="data">
|
|
<textarea autocomplete="off" name="options" id="get_focus" cols="70" rows="20">
|
|
{% if report.options %}{{report.options}}{% else %}{% endif %}
|
|
</textarea>
|
|
<br>
|
|
<i>Hint</i>: use Gramps CLI options such as output file format <b>off=pdf</b>, <b>off=ged</b>, or <b>off=gramps</b>
|
|
</td>
|
|
</tr>
|
|
<td class="ColumnValue">
|
|
<input type="submit" value="Run"></input>
|
|
</td>
|
|
<td>
|
|
</td>
|
|
</form>
|
|
|
|
</tr>
|
|
<tr>
|
|
<td class="ColumnAttribute">Help:</td>
|
|
<td class="ColumnValue" id="data">
|
|
{{help|safe}}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|