WIP: Begin ae app with subscription handling

This commit is contained in:
Skia
2015-12-15 17:50:50 +01:00
parent a6aac76d75
commit b35483d2a9
12 changed files with 247 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{% extends "core/base.html" %}
{% block title %}
{% if profile %}
Edit {{ member.user.get_display_name }}'s subscription
{% endif %}
{% endblock %}
{% block content %}
<h3>Edit subscription</h3>
{# <p><a href="{% url 'core:user_profile' object.member.user.id %}">Go to profile</a></p> #}
{# <p>You're editing the subscription of <strong>{{ member.user.get_display_name }}</strong></p>#}
<form action="" method="post">
{% csrf_token %}
{{ form.as_p }}
<p><input type="submit" value="Save!" /></p>
</form>
{% endblock %}