This commit is contained in:
gitea 2025-03-04 23:24:29 +00:00
parent 76fbb4a69b
commit 540f9cbe3c
3 changed files with 11 additions and 10 deletions

View File

@ -245,7 +245,6 @@
<a id="updateBtn" href="#" class="btn btn-sm btn-phoenix-primary me-2" data-url="{% url 'update_note_to_lead' note.pk %}" data-bs-toggle="modal" data-bs-target="#noteModal" data-note-title="{{ _("Update") }}<i class='fas fa-pen-square text-primary ms-2'></i>"> <a id="updateBtn" href="#" class="btn btn-sm btn-phoenix-primary me-2" data-url="{% url 'update_note_to_lead' note.pk %}" data-bs-toggle="modal" data-bs-target="#noteModal" data-note-title="{{ _("Update") }}<i class='fas fa-pen-square text-primary ms-2'></i>">
<i class="fas fa-pen"></i> <i class="fas fa-pen"></i>
</a> </a>
<button class="btn btn-phoenix-danger btn-sm delete-btn" <button class="btn btn-phoenix-danger btn-sm delete-btn"
data-url="{% url 'delete_note_to_lead' note.pk %}" data-url="{% url 'delete_note_to_lead' note.pk %}"
data-message="Are you sure you want to delete this note?" data-message="Are you sure you want to delete this note?"

View File

@ -101,7 +101,9 @@
<td></td> <td></td>
<td> <td>
<div class="qr-code"> <div class="qr-code">
<img class="rounded-soft" src="{{ dealer.logo.url|default:'' }}" alt="Dealer Logo"/> {% if dealer.logo %}
<img class="rounded-soft" src="{{ dealer.logo.url|default:'' }}" alt="Dealer Logo"/>
{% endif %}
</div> </div>
</td> </td>
</tr> </tr>

View File

@ -27,7 +27,7 @@
{% endif %} {% endif %}
{% csrf_token %} {% csrf_token %}
{{ form|crispy }} {{ form|crispy }}
<button type="submit" class="btn btn-primary"><i class="fa-solid fa-floppy-disk"></i> {% trans 'Save' %}</button> <button type="submit" class="btn btn-primary"><i class="fa-solid fa-floppy-disk"></i> {% trans 'Pay' %}</button>
</form> </form>
</div> </div>
</div> </div>