Skip to content

Commit

Permalink
Minor template updates
Browse files Browse the repository at this point in the history
  • Loading branch information
elnappo committed Mar 14, 2019
1 parent 5bb6131 commit 1a1a544
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion project_novis/accounts/templates/validation.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ <h3 class="box-title">{% trans "Request Name Validation" %}</h3>
<p><b>Name missing!</b> Please set your name <a href="{% url 'profile_change' %}">here</a>.</p>
{% else %}
<p>Please provide a prove for you identity e.g. a passport copy. Its okay to black out all irrelevant parts.
All data required for verification will be removed after the validation process. If we have further
All data required for verification will be removed after the validation process or after 30 days. If we have further
questions we will contact you via email.</p>
<form class="form" method="post">
{% csrf_token %}
Expand Down
2 changes: 1 addition & 1 deletion project_novis/callsign/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ class PersonAdmin(BaseModelAdmin):
class DataImportAdmin(BaseModelAdmin):
list_display = ("task", "start", "finished")
list_display_links = ("task",)
list_filter = ("task", "start", "stop")
list_filter = ("task", "start", "stop", "created", "modified")
ordering = ('-start',)

readonly_fields = ("finished",)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{% block title %}{{ object.name }} - Amateur Radio Callsign{% endblock %}

{% block meta_content %}
<meta name="description" content="{{ object.name }} is an amateur radio callsign{% if object.location and object.country.name %} located in {{ object.country.name }} (QTH: {{ object.grid }}){% endif %}. Project novis is a free and open-source platform for amateur radio related services. Provides a comprehensive database with an easy to use and modern API.">
<meta name="description" content="{{ object.name }} is an amateur radio callsign{% if object.location and object.country.name %} located in {{ object.country.name }} (QTH: {{ object.grid }}){% endif %}. Project novis is a free and open-source platform for amateur radio related services.">
<meta name="callsign" content="{{ object.name }}">
{% endblock %}

Expand Down

0 comments on commit 1a1a544

Please sign in to comment.