-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(applications): Add field to remove application group from the ap…
…plication page (#765) * add field for showing application group and filter in view * fix wrong mail bug * change names of lists
- Loading branch information
Showing
7 changed files
with
61 additions
and
44 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
applications/migrations/0019_applicationgroup_open_for_applications.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 3.2.18 on 2023-09-16 22:28 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('applications', '0018_alter_application_project_interests'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='applicationgroup', | ||
name='open_for_applications', | ||
field=models.BooleanField(default=True, verbose_name='Åpen for søknader'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ <h5>Hackerspace</h5> | |
{% trans "for detaljerte åpningstider" %} | ||
</p> | ||
</div> | ||
<p>{% trans "For øvrige henvendelser kan du også ta kontakt via" %} <a class="white-text" style="white-space: nowrap;" href="mailto:herspace[email protected]">[email protected]</a> | ||
<p>{% trans "For øvrige henvendelser kan du også ta kontakt via" %} <a class="white-text" style="white-space: nowrap;" href="mailto:hackerspace[email protected]">[email protected]</a> | ||
</div> | ||
<div class="col m6 l4 hide-on-small-only"> | ||
<h5>Lenker</h5> | ||
|