This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
cud-themes/idp/profiles/edit_profile.html

19 lines
399 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block title %}{% trans "Create profile" %}{% endblock %}
{% block content %}
<div class="login">
<form method="post">
{% csrf_token %}
{{ form.as_p }}
{% if form.instance and form.instance.id %}
<input type="submit" value="{% trans "Modify" %}"/>
{% else %}
<input type="submit" value="{% trans "Create" %}"/>
{% endif %}
</form>
</div>
{% endblock %}