better spacing of labels

This commit is contained in:
artus40
2018-01-09 20:57:05 +01:00
parent e88037f0ae
commit 0f7ed15d9b
2 changed files with 2 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
<tr>
<th class="bg-{{bg_color}}">
<th class="bg-{{bg_color}}" width="20%">
{% if link %}
<a href="{{link}}"><strong>{{header}}</strong></a>
{% else %}
@@ -12,5 +12,5 @@
{% endfor %}
</div>
</th>
<td style="background-color:#fff"><p>{{text | linebreaks }}</p></td>
<td style="background-color:#;" width="80%"><p>{{text | linebreaks }}</p></td>
</tr>

View File

@@ -99,7 +99,6 @@ class SujetListView(ListView):
cell_template = "notes/table_cell_sujets.html"
table_header = "Liste des sujets"
@staticmethod
def info_completed_filter(qs):
completed_ratio = 70 # % of total fields completed
@@ -110,7 +109,6 @@ class SujetListView(ListView):
return qs.exclude(pk__in=excluded_set)
@staticmethod
def rencontre_dans_le_mois(qs):
""" Renvoie les sujets du queryset pour lesquelles une observation a été enregistrée
au cours des 30 derniers jours """