Features: 1) Replace email templates' header image from favicon.png to logo.png; 2) Add Django facet configuration in .idea/evibes.iml;
Fixes: 1) Correct iml file structure for better compatibility; Extra: Update `.idea/evibes.iml` to include Django-specific settings for project consistency;
This commit is contained in:
parent
b1d404ef6b
commit
decd166126
9 changed files with 25 additions and 8 deletions
|
|
@ -1,5 +1,22 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module version="4">
|
||||
<module type="PYTHON_MODULE" version="4">
|
||||
<component name="FacetManager">
|
||||
<facet type="django" name="Django">
|
||||
<configuration>
|
||||
<option name="rootFolder" value="$MODULE_DIR$" />
|
||||
<option name="settingsModule" value="evibes/settings/__init__.py" />
|
||||
<option name="manageScript" value="$MODULE_DIR$/manage.py" />
|
||||
<option name="environment" value="<map/>" />
|
||||
<option name="doNotUseTestRunner" value="false" />
|
||||
<option name="trackFilePattern" value="migrations" />
|
||||
</configuration>
|
||||
</facet>
|
||||
</component>
|
||||
<component name="NewModuleRootManager">
|
||||
<content url="file://$MODULE_DIR$" />
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
<component name="PyDocumentationSettings">
|
||||
<option name="format" value="PLAIN" />
|
||||
<option name="myDocStringFormat" value="Plain" />
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@
|
|||
<table class="email-container">
|
||||
<tr>
|
||||
<td class="header">
|
||||
<img src="{% static 'favicon.png' %}"
|
||||
<img src="{% static 'logo.png' %}"
|
||||
alt="{% blocktrans %}logo{% endblocktrans %}" width="120">
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
|||
|
|
@ -90,7 +90,7 @@
|
|||
<table class="email-container">
|
||||
<tr>
|
||||
<td class="header">
|
||||
<img src="{% static 'favicon.png' %}"
|
||||
<img src="{% static 'logo.png' %}"
|
||||
alt="{% blocktrans %}logo{% endblocktrans %}" width="120">
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@
|
|||
<table class="email-container">
|
||||
<tr>
|
||||
<td class="header">
|
||||
<img src="{% static 'favicon.png' %}" alt="{% blocktrans %}logo{% endblocktrans %}" width="120">
|
||||
<img src="{% static 'logo.png' %}" alt="{% blocktrans %}logo{% endblocktrans %}" width="120">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@
|
|||
<table class="email-container">
|
||||
<tr>
|
||||
<td class="header">
|
||||
<img src="{% static 'favicon.png' %}" alt="{% blocktrans %}logo{% endblocktrans %}" width="120">
|
||||
<img src="{% static 'logo.png' %}" alt="{% blocktrans %}logo{% endblocktrans %}" width="120">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
|
|||
BIN
evibes/models.png
Normal file
BIN
evibes/models.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.7 MiB |
|
|
@ -84,7 +84,7 @@
|
|||
<table class="email-container">
|
||||
<tr>
|
||||
<td class="header">
|
||||
<img src="{% static 'favicon.png' %}"
|
||||
<img src="{% static 'logo.png' %}"
|
||||
alt="{% blocktrans %}logo{% endblocktrans %}" width="120">
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
|||
|
|
@ -82,7 +82,7 @@
|
|||
<table class="email-container">
|
||||
<tr>
|
||||
<td class="header">
|
||||
<img src="{% static 'favicon.png' %}" alt="{% blocktrans %}logo{% endblocktrans %}" width="120">
|
||||
<img src="{% static 'logo.png' %}" alt="{% blocktrans %}logo{% endblocktrans %}" width="120">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
|
|||
|
|
@ -82,7 +82,7 @@
|
|||
<table class="email-container">
|
||||
<tr>
|
||||
<td class="header">
|
||||
<img src="{% static 'favicon.png' %}" alt="{% blocktrans %}logo{% endblocktrans %}" width="120">
|
||||
<img src="{% static 'logo.png' %}" alt="{% blocktrans %}logo{% endblocktrans %}" width="120">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
|
|||
Loading…
Reference in a new issue