CodeTheChangeUBC/reBOOT

View on GitHub
app/templates/admin/index.html

Summary

Maintainability
Test Coverage
{% extends "admin/base_site.html" %}
{% load i18n static %}

{% block extrastyle %}{{ block.super }}
    <link rel="stylesheet" type="text/css" href="{% static "admin/css/dashboard.css" %}" />
    <link rel="stylesheet" type="text/css" href="{% static "admin/css/index.css" %}">
{% endblock %}

{% block coltype %}colMS{% endblock %}

{% block bodyclass %}{{ block.super }} dashboard{% endblock %}

{% block breadcrumbs %}{% endblock %}

{% block content %}
<div id="content-main">
{% if app_list %}
    {% for app in app_list %}
        <div class="app-{{ app.app_label }} module">
        <table>
        <caption>
            <span class="section" title="{% blocktrans with name=app.name %}Models in the {{ name }} application{% endblocktrans %}">{{ app.name }}</span>
        </caption>
        {% for model in app.models %}
            <tr class="model-{{ model.object_name|lower }}">
            {% if model.admin_url %}
                <th scope="row"><a href="{{ model.admin_url }}">{{ model.name }}</a></th>
            {% else %}
                <th scope="row">{{ model.name }}</th>
            {% endif %}

            {% if model.add_url %}
                <td><a href="{{ model.add_url }}" class="addlink">{% trans 'Add' %}</a></td>
            {% else %}
                <td>&nbsp;</td>
            {% endif %}

            {% if model.admin_url %}
                <td><a href="{{ model.admin_url }}" class="changelink">{% trans 'Change' %}</a></td>
            {% else %}
                <td>&nbsp;</td>
            {% endif %}
            </tr>
        {% endfor %}
        </table>
        </div>
    {% endfor %}
    {% if perms.app.can_export_data %}
    <div class="module">
        <table>
            <caption>
                <span class="section">Export Existing Data</span>
            </caption>
            <tr>
                <form id="export_form" method="post" enctype="multipart/form-data" action="download/csv">
                    {% csrf_token %}
                    {{ form.as_p }}
                    <th>
                        <input type="text" name="export_name" value="{% now 'Ymd' %} db_export" required/><span>.csv</span>
                    </th>
                    <th align="right">
                        <input class="btn_upload" style="padding: 5px 15px;" type="submit" value="Export Data" />
                    </th>
                </form>
            </tr>
        </table>
    </div>
    {% endif %}
    {% if perms.app.can_import_historical %}
    <div class="module">
        <table>
            <caption>
                <span class="section">Import New Historical Data</span>
            </caption>
            <tr>
                <form id="csv_form" method="post" enctype="multipart/form-data" action="upload/csv">
                    {% csrf_token %}
                    {{ form.as_p }}
                    <th>
                        <input type="file" name="uploaded_file" accept="application/csv" />
                    </th>
                    <th align="right">
                        <input class="btn_upload" style="padding: 5px 15px;" type="submit" value="Import Data" />
                    </th>
                </form>
            </tr>
        </table>
    </div>
    {% endif %}
{% else %}
    <p>{% trans "You don't have permission to edit anything." %}</p>
{% endif %}
</div>
{% endblock %}

{% block sidebar %}
<div id="content-related">
    <div class="module" id="recent-actions-module">
        <h2>{% trans 'Recent actions' %}</h2>
        <h3>{% trans 'My actions' %}</h3>
            {% load log %}
            {% get_admin_log 10 as admin_log for_user user %}
            {% if not admin_log %}
            <p>{% trans 'None available' %}</p>
            {% else %}
            <ul class="actionlist">
            {% for entry in admin_log %}
            <li class="{% if entry.is_addition %}addlink{% endif %}{% if entry.is_change %}changelink{% endif %}{% if entry.is_deletion %}deletelink{% endif %}">
                {% if entry.is_deletion or not entry.get_admin_url %}
                    {{ entry.object_repr }}
                {% else %}
                    <a href="{{ entry.get_admin_url }}">{{ entry.object_repr }}</a>
                {% endif %}
                <br/>
                {% if entry.content_type %}
                    <span class="mini quiet">{% filter capfirst %}{{ entry.content_type }}{% endfilter %}</span>
                {% else %}
                    <span class="mini quiet">{% trans 'Unknown content' %}</span>
                {% endif %}
            </li>
            {% endfor %}
            </ul>
            {% endif %}
    </div>
</div>
{% endblock %}