Update rules list view

This commit is contained in:
sonny 2020-05-15 20:32:35 +02:00
parent 1ec81ff48c
commit ba2b5d0547
2 changed files with 63 additions and 33 deletions

View file

@ -6,11 +6,19 @@
<form class="form rules-form"> <form class="form rules-form">
{% csrf_token %} {% csrf_token %}
<div class="form__actions"> <section class="section form__section form__section--actions">
<fieldset class="fieldset form__fieldset">
<input type="submit" class="button button--primary" formaction="{% url "news:collection:rules-enable" %}" formmethod="post" value="{% trans "Enable" %}" /> <input type="submit" class="button button--primary" formaction="{% url "news:collection:rules-enable" %}" formmethod="post" value="{% trans "Enable" %}" />
<input type="submit" class="button button--primary" formaction="{% url "news:collection:rules-disable" %}" formmethod="post" value="{% trans "Disable" %}" /> <input type="submit" class="button button--primary" formaction="{% url "news:collection:rules-disable" %}" formmethod="post" value="{% trans "Disable" %}" />
<input type="submit" class="button button--error" formaction="{% url "news:collection:rules-delete" %}" formmethod="post" value="{% trans "Delete" %}"/> <input type="submit" class="button button--error" formaction="{% url "news:collection:rules-delete" %}" formmethod="post" value="{% trans "Delete" %}"/>
</fieldset>
<div class="form__actions">
<a class="link button button--confirm" href="{% url "news:collection:rule-create" %}">{% trans "Add a rule" %}</a>
</div> </div>
</section>
<section class="section form__section">
<table class="table rules-table"> <table class="table rules-table">
<thead class="table__header rules-table__header"> <thead class="table__header rules-table__header">
<tr class="table__row rules-table__row"> <tr class="table__row rules-table__row">
@ -41,7 +49,9 @@
{% endfor %} {% endfor %}
</tbody> </tbody>
</table> </table>
</section>
</form> </form>
<div class="table__footer"> <div class="table__footer">
<div class="pagination"> <div class="pagination">
<span class="pagination__previous"> <span class="pagination__previous">

View file

@ -16,6 +16,19 @@
justify-content: space-between; justify-content: space-between;
} }
} }
&--actions {
display: flex;
flex-direction: row !important;
& .form__fieldset {
flex-direction: row;
& > * {
margin: 0 0 0 5px;
}
}
}
} }
&__fieldset { &__fieldset {
@ -29,6 +42,13 @@
padding: 15px; padding: 15px;
} }
&__actions {
display: flex;
flex-direction: row;
padding: 15px;
}
&__title { &__title {
font-size: 18px; font-size: 18px;
} }