mirror of https://github.com/interlegis/sapl.git
Leandro Roberto da Silva
7 years ago
committed by
Edward
14 changed files with 218 additions and 78 deletions
@ -0,0 +1,30 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.9.13 on 2018-02-02 15:31 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations |
|||
import image_cropping.fields |
|||
import sapl.parlamentares.models |
|||
import sapl.utils |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('parlamentares', '0015_auto_20180131_1629'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AddField( |
|||
model_name='parlamentar', |
|||
name='cropping', |
|||
field=image_cropping.fields.ImageRatioField('fotografia', '128x128', adapt_rotation=False, allow_fullsize=False, free_crop=False, |
|||
help_text='A configuração do Avatar é possível após a atualização da fotografia.', hide_image_field=False, size_warning=False, verbose_name='Avatar'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='parlamentar', |
|||
name='fotografia', |
|||
field=image_cropping.fields.ImageCropField(blank=True, null=True, upload_to=sapl.parlamentares.models.foto_upload_path, validators=[ |
|||
sapl.utils.restringe_tipos_de_arquivo_img], verbose_name='Fotografia'), |
|||
), |
|||
] |
@ -0,0 +1,21 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.9.13 on 2018-02-02 17:28 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations |
|||
import image_cropping.fields |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('parlamentares', '0016_auto_20180202_1331'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='parlamentar', |
|||
name='cropping', |
|||
field=image_cropping.fields.ImageRatioField('fotografia', '128x128', adapt_rotation=False, allow_fullsize=False, free_crop=False, help_text='A configuração do Avatar é possível após a atualização da fotografia.', hide_image_field=False, size_warning=True, verbose_name='Avatar'), |
|||
), |
|||
] |
@ -1,18 +1,63 @@ |
|||
{% extends "crud/list.html" %} |
|||
{% load i18n %} |
|||
{% load crispy_forms_tags %} |
|||
{% load crispy_forms_tags cropping%} |
|||
{% block extra_content %} |
|||
<fieldset class="form-group"> |
|||
<legend>Selecione o Período</legend> |
|||
<form method="GET"> |
|||
<select name="pk" class="form-control" onChange="form.submit();"> |
|||
{% for l in legislaturas %} |
|||
<option value="{{l.id}}" {% if l.id == legislatura_id %} selected {% endif %}> |
|||
{{l}} |
|||
</option> |
|||
{% endfor %} |
|||
</select> |
|||
</form> |
|||
</fieldset> |
|||
<br/> |
|||
<fieldset class="form-group"> |
|||
<legend>Selecione o Período</legend> |
|||
<form method="GET"> |
|||
<select name="pk" class="form-control" onChange="form.submit();"> |
|||
{% for l in legislaturas %} |
|||
<option value="{{l.id}}" {% if l.id == legislatura_id %} selected {% endif %}> |
|||
{{l}} |
|||
</option> |
|||
{% endfor %} |
|||
</select> |
|||
</form> |
|||
</fieldset> |
|||
<br/> |
|||
{% endblock %} |
|||
|
|||
{% block container_table_list %} |
|||
{% if not rows %} |
|||
<p>{{ NO_ENTRIES_MSG }}</p> |
|||
{% else %} |
|||
<div class="container-table"> |
|||
<div class="result-count">{% blocktrans with verbose_name_plural=view.verbose_name_plural %}Total de {{ verbose_name_plural }}: <strong>{{count}}</strong>{% endblocktrans %}</div> |
|||
<table class="table table-striped table-hover table-link-ordering"> |
|||
<thead> |
|||
<tr> |
|||
{% for name in headers %} |
|||
{% if forloop.first %} |
|||
<th colspan=2> |
|||
{% else %} |
|||
<th> |
|||
{% endif %} |
|||
{{ name }} |
|||
</th> |
|||
{% endfor %} |
|||
</tr> |
|||
</thead> |
|||
<tbody> |
|||
{% for value_list in rows %} |
|||
<tr> |
|||
{% for value, href, obj in value_list %} |
|||
{% if forloop.first %} |
|||
<td> |
|||
<img class="avatar-parlamentar" src="{% cropped_thumbnail obj "cropping" %}"> |
|||
</td> |
|||
{% endif %} |
|||
<td> |
|||
{% if href %} |
|||
<a href="{{ href }}">{{ value|safe|default:"" }}</a> |
|||
{% else %} |
|||
{{ value|safe|default:"" }} |
|||
{% endif %} |
|||
</td> |
|||
{% endfor %} |
|||
</tr> |
|||
{% endfor %} |
|||
</tbody> |
|||
</table> |
|||
</div> |
|||
{% endif %} |
|||
{% endblock %} |
|||
|
Loading…
Reference in new issue