synthea_webservice/webservice/apps/synthea/templates/synthea/generator_form.html

22 lines
646 B
HTML

{% extends 'base.html' %} <!-- Add this for inheritance -->
{% load i18n %}
{% block title %}{% trans "Generate a new Synthea data set" %}{% endblock %}
{% block pagetitle %}{% trans "Generate a new Synthea data set" %}{% endblock %}
{% block menu %}
{% include 'synthea/menu.html' %}
{% endblock %}
{% block content %}
<h1>Synthea Generator</h1>
<p>Enter the form fields and press submit. <small>U vraagt, wij draaien ;)</small></p>
<form method="POST" class="post-form">
{% csrf_token %}
<table>
{{ form.as_table }}
</table>
<button type="submit" class="save btn btn-default">Save</button>
</form>
{% endblock %}