8 lines
485 B
HTML
8 lines
485 B
HTML
|
{% extends "hostingpackages/base.html" %}
|
||
|
{% load i18n crispy_forms_tags %}
|
||
|
{% block title %}{{ block.super }} - {% blocktrans with full_name=customer.get_full_name %}Add hosting package for Customer {{ full_name }}{% endblocktrans %}{% endblock title %}
|
||
|
{% block page_title %}{% blocktrans with full_name=customer.get_full_name %}Add Hosting Package for Customer {{ full_name }}{% endblocktrans %}{% endblock page_title %}
|
||
|
{% block content %}
|
||
|
{% crispy form %}
|
||
|
{% endblock content %}
|