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.
u-auth/uauth/organization/templates/organization/upload.html

22 lines
649 B
HTML

{% extends "organization/base.html" %}
{% load i18n %}
{% block more-user-links %}
{{ block.super }}
<a href="{% url "manage-theme" organization.slug %}">{% trans 'Theme' %}</a>
{% endblock %}
{% block appbar %}
<h2>{% trans "Theme" %}</h2>
<a href="{% url "static-upload" organization.slug %}" rel="popup">{% trans "Upload static" %}</a>
<a href="{% url "template-upload" organization.slug %}" rel="popup">{% trans "Upload template" %}</a>
{% endblock %}
{% block content %}
<form method="post" enctype="multipart/form-data">
{% csrf_token %}
{{ form.as_p }}
<p><button name="upload">{% trans "Upload" %}</button>
</form>
{% endblock %}