2011-10-12 16:32:31 +00:00
|
|
|
{% extends "view_page_detail.html" %}
|
|
|
|
{% load my_tags %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<div class="content" id="IndividualDetail">
|
2011-10-16 17:00:32 +00:00
|
|
|
|
2011-12-12 23:21:13 +00:00
|
|
|
{% include "detail_breadcrumb.html" %}
|
2011-10-16 17:00:32 +00:00
|
|
|
|
2011-10-12 16:32:31 +00:00
|
|
|
<div id="summaryarea">
|
|
|
|
|
|
|
|
<form name="RunForm" action="/report/{{report.handle}}/run">
|
2012-05-17 11:56:59 +00:00
|
|
|
<table class="infolist" style="width:90%;">
|
2011-10-12 16:32:31 +00:00
|
|
|
<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">
|
2012-07-25 05:02:02 +00:00
|
|
|
<textarea autocomplete="off" name="options" id="get_focus" cols="70" rows="20">
|
|
|
|
{% if report.options %}{{report.options}}{% else %}{% endif %}
|
|
|
|
</textarea>
|
|
|
|
<br>
|
2011-10-15 14:31:09 +00:00
|
|
|
<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>
|
2011-10-12 16:32:31 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2012-05-30 02:52:33 +00:00
|
|
|
<td class="ColumnValue">
|
2011-10-12 16:32:31 +00:00
|
|
|
<input type="submit" value="Run"></input>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
</td>
|
|
|
|
</form>
|
|
|
|
|
2012-07-25 05:02:02 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="ColumnAttribute">Help:</td>
|
|
|
|
<td class="ColumnValue" id="data">
|
|
|
|
{{help|safe}}
|
|
|
|
</td>
|
2011-10-12 16:32:31 +00:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|