parent
e8768c4980
commit
78457e1428
@ -0,0 +1,23 @@ |
||||
# Generated by Django 5.1 on 2025-07-10 13:20 |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('bizdev', '0001_initial'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AddField( |
||||
model_name='activity', |
||||
name='declination_reason', |
||||
field=models.CharField(blank=True, choices=[('TOO_EXPENSIVE', 'Too expensive'), ('USE_OTHER_PRODUCT', 'Use other product'), ('USE_ANDROID', 'Use Android'), ('UNKNOWN', 'Unknown')], max_length=50, null=True), |
||||
), |
||||
migrations.AlterField( |
||||
model_name='activity', |
||||
name='status', |
||||
field=models.CharField(blank=True, choices=[('CONTACTED', 'Contacted'), ('RESPONDED', 'Responded'), ('SHOULD_TEST', 'Should test'), ('TESTING', 'Testing'), ('CUSTOMER', 'Customer'), ('LOST', 'Lost customer'), ('DECLINED', 'Declined'), ('DECLINED_UNRELATED', 'Declined without significance')], max_length=50, null=True), |
||||
), |
||||
] |
||||
@ -1,25 +0,0 @@ |
||||
<!-- templates/admin/bizdev/app_index.html --> |
||||
{% extends "admin/app_index.html" %} |
||||
{% load i18n %} |
||||
|
||||
{% block content %} |
||||
<div class="module" style="margin-bottom: 20px;"> |
||||
<!-- <h2>{% trans "Actions" %}</h2> --> |
||||
<div class="form-row"> |
||||
<a href="{% url 'bizdev_email_count' %}" class="button default" style="margin-right: 5px;"> |
||||
{% trans "Count Users no event" %} |
||||
</a> |
||||
<a href="{% url 'bizdev_email_users' %}" class="button default" style="margin-right: 5px;"> |
||||
{% trans "Insta send email no event" %} |
||||
</a> |
||||
<a href="{% url 'bizdev_email_with_tournaments_count' %}" class="button default" style="margin-right: 5px;"> |
||||
{% trans "Count Users" %} |
||||
</a> |
||||
<a href="{% url 'email_users_with_tournaments' %}" class="button default" style="margin-right: 5px;"> |
||||
{% trans "Insta send email" %} |
||||
</a> |
||||
</div> |
||||
</div> |
||||
|
||||
{{ block.super }} |
||||
{% endblock %} |
||||
Loading…
Reference in new issue