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