aboutsummaryrefslogtreecommitdiffstats
path: root/fatcat/templates/editgroup_view.html
blob: 13eb2d7fc871279b6b80216c9639078ffb50a1a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "base.html" %}
{% block body %}

<h1>Edit Group: {{ editgroup.id}}</h1>

    description = db.Column(db.String)
    editor = db.relationship('Editor', foreign_keys='EditGroup.editor_id')


<p>Editor: <a href="/editor/{{ editgroup.editor.id }}">{{ editgroup.editor.username }}</a>
<p>Description: {{ editgroup.description }}

<p>TODO: list edits by type...</p>

{% endblock %}