Skip to content

Commit

Permalink
Resolve - #32
Browse files Browse the repository at this point in the history
 - TemplateDoesNotExist for extended model #32
  • Loading branch information
ashishmohite committed Jan 28, 2017
1 parent 310fe3d commit dd165b2
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions fcm/templates/fcm/admin/send_message.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{% extends "admin/change_form.html" %}
{% load i18n static %}

{% block breadcrumbs %}
{% with app_label=opts.app_label original=_('Send message') has_change_permission=1 %}
{{ block.super }}
{% endwith %}
{% endblock %}

{% block field_sets %}
<h2>{% trans "Send message" %}</h2>
<fieldset class="module aligned wide">
{{ form }}
</fieldset>
{% endblock field_sets %}

{% block inline_field_sets %}{% endblock inline_field_sets %}


{% block submit_buttons_bottom %}
<input type="submit" value="{% trans 'Send' %}" class="default" name="_save" />
{% endblock %}

0 comments on commit dd165b2

Please sign in to comment.