This repository has been archived by the owner on Aug 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add seating ordering and auto-adding of more seats (#370)
* Add seating ordering * Make seating automatically add more seats
- Loading branch information
Showing
6 changed files
with
68 additions
and
25 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.11.29 on 2022-08-04 15:58 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('seating', '0013_auto_20200909_0513'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='seating', | ||
name='priority', | ||
field=models.IntegerField(default=0, help_text='For ordering of seatings, higher number will show first.', verbose_name='priority'), | ||
), | ||
] |
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,20 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.11.29 on 2022-08-04 16:20 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('seating', '0014_seating_priority'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='seating', | ||
name='number_of_seats', | ||
field=models.IntegerField(default=0, editable=False, help_text='This field is automatically updated to match the chosen layout. Change the chosen layout to alter this field.', verbose_name='number of seats'), | ||
), | ||
] |
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: PACKAGE VERSION\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2022-08-03 15:18+0200\n" | ||
"POT-Creation-Date: 2022-08-04 15:58+0200\n" | ||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: LANGUAGE <[email protected]>\n" | ||
|
@@ -837,15 +837,18 @@ msgstr "setekartmal" | |
msgid "seating layouts" | ||
msgstr "setekartmaler" | ||
|
||
msgid "This field is automatically updated to match the chosen layout. Change the chosen layout to alter this field." | ||
msgstr "Dette feltet oppdateres automatisk for å matche malen. Endre malen for å oppdatere dette feltet." | ||
msgid "For ordering of seatings, higher number will show first." | ||
msgstr "For rekkefølge av setekart, høyere nummer vises først." | ||
|
||
msgid "closing date" | ||
msgstr "stengningsdato" | ||
|
||
msgid "layout" | ||
msgstr "mal" | ||
|
||
msgid "This field is automatically updated to match the chosen layout. Change the chosen layout to alter this field." | ||
msgstr "Dette feltet oppdateres automatisk for å matche malen. Endre malen for å oppdatere dette feltet." | ||
|
||
msgid "seating" | ||
msgstr "setekart" | ||
|
||
|
@@ -1675,9 +1678,6 @@ msgstr "Sluttid" | |
msgid "Location" | ||
msgstr "Sted" | ||
|
||
msgid "View tickets" | ||
msgstr "Vis billetter" | ||
|
||
msgid "LAN List" | ||
msgstr "LAN-liste" | ||
|
||
|
@@ -2303,9 +2303,3 @@ msgstr "Adminpanel" | |
|
||
msgid "Log out" | ||
msgstr "Logg ut" | ||
|
||
#~ msgid "Ticket confirmation" | ||
#~ msgstr "Billettbekreftelse" | ||
|
||
#~ msgid "By purchasing a ticket, you are confirming that all of the information about you is correct. If not, update it now in your <a href=\"%(update_profile_url)s\">profile settings</a>." | ||
#~ msgstr "Ved å kjøpe en billett bekrefter du at all informasjonen om deg er korrekt. Hvis ikke, oppdater det nå i <a href=\"%(update_profile_url)s\">profilinnstillingene</a> dine." |