The dashboard plugin currently does not support the option to show the details and logs for a selected languagepack. This patch adds this option to the dashboard plugin. Also, here is a link to a screenchot of what the page looks like: http://pasteboard.co/HR1zlMgT.png Change-Id: I4f9f6facf8837b374a0d72d657358cc7a88abb1e Closes-Bug: #1599566
12 lines
288 B
HTML
12 lines
288 B
HTML
{% extends 'base.html' %}
|
|
{% load i18n %}
|
|
{% block title %}{% trans "Solum" %}{% endblock %}
|
|
|
|
{% block page_header %}
|
|
{% include "horizon/common/_page_header.html" with title=_("Solum - Languagepacks") %}
|
|
{% endblock page_header %}
|
|
|
|
{% block main %}
|
|
{{ table.render }}
|
|
{% endblock %}
|