mirror of
https://github.com/pacnpal/django-anymail.git
synced 2025-12-20 11:51:05 -05:00
first senders list with template
This commit is contained in:
29
djrill/templates/djrill/fieldset.html
Normal file
29
djrill/templates/djrill/fieldset.html
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
<fieldset class="module aligned {{ fieldset.classes }}">
|
||||||
|
{% if fieldset.name %}<h2>{{ fieldset.name }}</h2>{% endif %}
|
||||||
|
{% if fieldset.description %}
|
||||||
|
<div class="description">{{ fieldset.description|safe }}</div>
|
||||||
|
{% endif %}
|
||||||
|
{% for line in fieldset %}
|
||||||
|
<div class="form-row{% if line.fields|length_is:'1' and line.errors %} errors{% endif %}{% for field in line %} {{ field.field.name }}{% endfor %}">
|
||||||
|
{% if line.fields|length_is:'1' %}{{ line.errors }}{% endif %}
|
||||||
|
{% for field in line %}
|
||||||
|
<div{% if not line.fields|length_is:'1' %} class="field-box{% if not field.is_readonly and field.errors %} errors{% endif %}"{% endif %}>
|
||||||
|
{% if not line.fields|length_is:'1' and not field.is_readonly %}{{ field.errors }}{% endif %}
|
||||||
|
{% if field.is_checkbox %}
|
||||||
|
{{ field.field }}{{ field.label_tag }}
|
||||||
|
{% else %}
|
||||||
|
{{ field.label_tag }}
|
||||||
|
{% if field.is_readonly %}
|
||||||
|
<p>{{ field.contents }}</p>
|
||||||
|
{% else %}
|
||||||
|
{{ field.field }}
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
{% if field.field.help_text %}
|
||||||
|
<p class="help">{{ field.field.help_text|safe }}</p>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
</fieldset>
|
||||||
29
djrill/templates/djrill/includes/fieldset.html
Normal file
29
djrill/templates/djrill/includes/fieldset.html
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
<fieldset class="module aligned {{ fieldset.classes }}">
|
||||||
|
{% if fieldset.name %}<h2>{{ fieldset.name }}</h2>{% endif %}
|
||||||
|
{% if fieldset.description %}
|
||||||
|
<div class="description">{{ fieldset.description|safe }}</div>
|
||||||
|
{% endif %}
|
||||||
|
{% for line in fieldset %}
|
||||||
|
<div class="form-row{% if line.fields|length_is:'1' and line.errors %} errors{% endif %}{% for field in line %} {{ field.field.name }}{% endfor %}">
|
||||||
|
{% if line.fields|length_is:'1' %}{{ line.errors }}{% endif %}
|
||||||
|
{% for field in line %}
|
||||||
|
<div{% if not line.fields|length_is:'1' %} class="field-box{% if not field.is_readonly and field.errors %} errors{% endif %}"{% endif %}>
|
||||||
|
{% if not line.fields|length_is:'1' and not field.is_readonly %}{{ field.errors }}{% endif %}
|
||||||
|
{% if field.is_checkbox %}
|
||||||
|
{{ field.field }}{{ field.label_tag }}
|
||||||
|
{% else %}
|
||||||
|
{{ field.label_tag }}
|
||||||
|
{% if field.is_readonly %}
|
||||||
|
<p>{{ field.contents }}</p>
|
||||||
|
{% else %}
|
||||||
|
{{ field.field }}
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
{% if field.field.help_text %}
|
||||||
|
<p class="help">{{ field.field.help_text|safe }}</p>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
</fieldset>
|
||||||
107
djrill/templates/djrill/senders_list.html
Normal file
107
djrill/templates/djrill/senders_list.html
Normal file
@@ -0,0 +1,107 @@
|
|||||||
|
{% extends "admin/base_site.html" %}
|
||||||
|
{% load adminmedia admin_list i18n %}
|
||||||
|
{% load url from future %}
|
||||||
|
{% block extrastyle %}
|
||||||
|
{{ block.super }}
|
||||||
|
<link rel="stylesheet" type="text/css" href="{% admin_media_prefix %}css/changelists.css" />
|
||||||
|
{{ media.css }}
|
||||||
|
{% if not actions_on_top and not actions_on_bottom %}
|
||||||
|
<style>
|
||||||
|
#changelist table thead th:first-child {width: inherit}
|
||||||
|
</style>
|
||||||
|
{% endif %}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block extrahead %}
|
||||||
|
{{ block.super }}
|
||||||
|
{{ media.js }}
|
||||||
|
{% if action_form %}{% if actions_on_top or actions_on_bottom %}
|
||||||
|
<script type="text/javascript">
|
||||||
|
(function($) {
|
||||||
|
$(document).ready(function($) {
|
||||||
|
$("tr input.action-select").actions();
|
||||||
|
});
|
||||||
|
})(django.jQuery);
|
||||||
|
</script>
|
||||||
|
{% endif %}{% endif %}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block bodyclass %}change-list{% endblock %}
|
||||||
|
|
||||||
|
{% if not is_popup %}
|
||||||
|
{% block breadcrumbs %}
|
||||||
|
<div class="breadcrumbs">
|
||||||
|
<a href="../../">
|
||||||
|
{% trans "Home" %}
|
||||||
|
</a>
|
||||||
|
›
|
||||||
|
<a href="../">
|
||||||
|
Djrill
|
||||||
|
</a>
|
||||||
|
›
|
||||||
|
Senders
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% block coltype %}flex{% endblock %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<div id="content-main">
|
||||||
|
{% block object-tools %}
|
||||||
|
{% if has_add_permission %}
|
||||||
|
<ul class="object-tools">
|
||||||
|
{% block object-tools-items %}
|
||||||
|
<li>
|
||||||
|
<a href="add/{% if is_popup %}?_popup=1{% endif %}" class="addlink">
|
||||||
|
{% blocktrans %}Add sender{% endblocktrans %}
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endblock %}
|
||||||
|
</ul>
|
||||||
|
{% endif %}
|
||||||
|
{% endblock %}
|
||||||
|
<div class="module" id="changelist">
|
||||||
|
{% block search %}{% endblock %}
|
||||||
|
{% block date_hierarchy %}{% endblock %}
|
||||||
|
|
||||||
|
{% block filters %}{% endblock %}
|
||||||
|
|
||||||
|
<form id="changelist-form" action="" method="post">
|
||||||
|
{% csrf_token %}
|
||||||
|
|
||||||
|
{% block result_list %}
|
||||||
|
{% if objects %}
|
||||||
|
<div class="results">
|
||||||
|
<table cellspacing="0" id="result_list">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
{% for header in objects.0.keys %}
|
||||||
|
<th scope="col">{{ header|capfirst }}</th>
|
||||||
|
{% endfor %}
|
||||||
|
<th></th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{% for result in objects %}
|
||||||
|
<tr class="{% cycle 'row1' 'row2' %}">
|
||||||
|
{% for item in result.values %}
|
||||||
|
<td>{{ item }}</td>
|
||||||
|
{% endfor %}
|
||||||
|
{% if result.is_enabled and result.approved_at %}
|
||||||
|
<td><button>disable</button></td>
|
||||||
|
{% else %}
|
||||||
|
<td><button>enable</button></td>
|
||||||
|
{% endif %}
|
||||||
|
</tr>
|
||||||
|
{% endfor %}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
{% endblock %}
|
||||||
|
{% block pagination %}{% endblock %}
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
||||||
@@ -59,4 +59,4 @@ class DjrillSendersListView(DjrillApiMixin, DjrillApiJsonObjectsMixin,
|
|||||||
|
|
||||||
def get(self, request):
|
def get(self, request):
|
||||||
objects = self.get_json_objects()
|
objects = self.get_json_objects()
|
||||||
return self.render_to_response({"objects": objects})
|
return self.render_to_response({"objects": json.loads(objects)})
|
||||||
|
|||||||
Reference in New Issue
Block a user